mirror of
https://github.com/leozide/leocad
synced 2024-12-26 21:58:44 +01:00
Move submodels menu entry above models list
Makes it easier to find the menu entry even in models with large number of submodels.
This commit is contained in:
parent
90726f612e
commit
764c653252
1 changed files with 1 additions and 1 deletions
|
@ -547,10 +547,10 @@ void lcMainWindow::CreateMenus()
|
|||
QMenu* ModelMenu = menuBar()->addMenu(tr("Sub&model"));
|
||||
ModelMenu->addAction(mActions[LC_MODEL_PROPERTIES]);
|
||||
ModelMenu->addAction(mActions[LC_MODEL_NEW]);
|
||||
ModelMenu->addAction(mActions[LC_MODEL_LIST]);
|
||||
ModelMenu->addSeparator();
|
||||
for (int ModelIdx = LC_MODEL_FIRST; ModelIdx <= LC_MODEL_LAST; ModelIdx++)
|
||||
ModelMenu->addAction(mActions[ModelIdx]);
|
||||
ModelMenu->addAction(mActions[LC_MODEL_LIST]);
|
||||
|
||||
QMenu* HelpMenu = menuBar()->addMenu(tr("&Help"));
|
||||
HelpMenu->addAction(mActions[LC_HELP_HOMEPAGE]);
|
||||
|
|
Loading…
Reference in a new issue