Debugger menu text cleanup. Removed redundant text.

This commit is contained in:
mjbudd77 2021-07-17 15:35:37 -04:00
parent 1b745599c7
commit e4f5384069
1 changed files with 10 additions and 10 deletions

View File

@ -334,29 +334,29 @@ QMenuBar *ConsoleDebugger::buildMenuBar(void)
actGroup = new QActionGroup(this); actGroup = new QActionGroup(this);
actGroup->setExclusive(true); actGroup->setExclusive(true);
// View -> Layout -> Compact View // View -> Layout -> Compact
act = new QAction(tr("&Compact View"), this); act = new QAction(tr("&Compact"), this);
//act->setStatusTip(tr("Compact View")); //act->setStatusTip(tr("Compact"));
connect( act, &QAction::triggered, [this]{ setLayoutOption(1); } ); connect( act, &QAction::triggered, [this]{ setLayoutOption(1); } );
actGroup->addAction(act); actGroup->addAction(act);
visMenu->addAction(act); visMenu->addAction(act);
// View -> Layout -> Compact View Split // View -> Layout -> Compact Split
act = new QAction(tr("Compact View &Split"), this); act = new QAction(tr("Compact &Split"), this);
//act->setStatusTip(tr("1 Tabbed Vertical Column with 2 Sections")); //act->setStatusTip(tr("1 Tabbed Vertical Column with 2 Sections"));
connect( act, &QAction::triggered, [this]{ setLayoutOption(2); } ); connect( act, &QAction::triggered, [this]{ setLayoutOption(2); } );
actGroup->addAction(act); actGroup->addAction(act);
visMenu->addAction(act); visMenu->addAction(act);
// View -> Layout -> Wide View // View -> Layout -> Wide
act = new QAction(tr("&Wide View"), this); act = new QAction(tr("&Wide"), this);
//act->setStatusTip(tr("2 Tabbed Vertical Columns with 3 Sections")); //act->setStatusTip(tr("2 Tabbed Vertical Columns with 3 Sections"));
connect( act, &QAction::triggered, [this]{ setLayoutOption(3); } ); connect( act, &QAction::triggered, [this]{ setLayoutOption(3); } );
actGroup->addAction(act); actGroup->addAction(act);
visMenu->addAction(act); visMenu->addAction(act);
// View -> Layout -> Wide View Quad // View -> Layout -> Wide Quad
act = new QAction(tr("Wide View &Quad"), this); act = new QAction(tr("Wide &Quad"), this);
//act->setStatusTip(tr("2 Tabbed Vertical Columns with 4 Sections")); //act->setStatusTip(tr("2 Tabbed Vertical Columns with 4 Sections"));
connect( act, &QAction::triggered, [this]{ setLayoutOption(4); } ); connect( act, &QAction::triggered, [this]{ setLayoutOption(4); } );
actGroup->addAction(act); actGroup->addAction(act);
@ -6563,7 +6563,7 @@ void DebuggerTabWidget::buildContextMenu(QContextMenuEvent *event)
//printf("TabWidget Context\n"); //printf("TabWidget Context\n");
moveMenu = menu.addMenu( tr("Move To") ); moveMenu = menu.addMenu( tr("Move Tab To...") );
group = new QActionGroup(moveMenu); group = new QActionGroup(moveMenu);
group->setExclusive(true); group->setExclusive(true);