Skip to content

Commit 80eb628

Browse files
Fixed naming of the dock area titlebar actions to be consistent
1 parent da20405 commit 80eb628

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/DockAreaTitleBar.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -577,12 +577,12 @@ void CDockAreaTitleBar::contextMenuEvent(QContextMenuEvent* ev)
577577
}
578578

579579
QMenu Menu(this);
580-
auto Action = Menu.addAction(tr("Detach Area"), this, SLOT(onUndockButtonClicked()));
580+
auto Action = Menu.addAction(tr("Detach Group"), this, SLOT(onUndockButtonClicked()));
581581
Action->setEnabled(d->DockArea->features().testFlag(CDockWidget::DockWidgetFloatable));
582582
Menu.addSeparator();
583-
Action = Menu.addAction(tr("Close Area"), this, SLOT(onCloseButtonClicked()));
583+
Action = Menu.addAction(tr("Close Group"), this, SLOT(onCloseButtonClicked()));
584584
Action->setEnabled(d->DockArea->features().testFlag(CDockWidget::DockWidgetClosable));
585-
Menu.addAction(tr("Close Other Areas"), d->DockArea, SLOT(closeOtherAreas()));
585+
Menu.addAction(tr("Close Other Groups"), d->DockArea, SLOT(closeOtherAreas()));
586586
Menu.exec(ev->globalPos());
587587
}
588588

0 commit comments

Comments
 (0)