File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -577,12 +577,12 @@ void CDockAreaTitleBar::contextMenuEvent(QContextMenuEvent* ev)
577
577
}
578
578
579
579
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 ()));
581
581
Action->setEnabled (d->DockArea ->features ().testFlag (CDockWidget::DockWidgetFloatable));
582
582
Menu.addSeparator ();
583
- Action = Menu.addAction (tr (" Close Area " ), this , SLOT (onCloseButtonClicked ()));
583
+ Action = Menu.addAction (tr (" Close Group " ), this , SLOT (onCloseButtonClicked ()));
584
584
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 ()));
586
586
Menu.exec (ev->globalPos ());
587
587
}
588
588
You can’t perform that action at this time.
0 commit comments