Skip to content

Commit

Permalink
make it format
Browse files Browse the repository at this point in the history
  • Loading branch information
camila314 committed Aug 25, 2024
1 parent 7077870 commit 56d9063
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Source/GUI/MemWatcher/MemWatchWidget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,8 @@ void MemWatchWidget::onMemWatchContextMenuRequested(const QPoint& pos)
contextMenu->addSeparator();
}

if (!node || node->isGroup()) {
if (!node || node->isGroup())
{
QAction* const addGroup{new QAction(tr("Add gro&up"), this)};
connect(addGroup, &QAction::triggered, this, &MemWatchWidget::onAddGroup);
contextMenu->addAction(addGroup);
Expand Down

0 comments on commit 56d9063

Please sign in to comment.