diff --git a/Source/GUI/MemWatcher/MemWatchWidget.cpp b/Source/GUI/MemWatcher/MemWatchWidget.cpp index 0c4944dc..953568d5 100644 --- a/Source/GUI/MemWatcher/MemWatchWidget.cpp +++ b/Source/GUI/MemWatcher/MemWatchWidget.cpp @@ -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);