Duplicate mode switch control in menu

This commit is contained in:
Jan Käberich 2023-03-10 17:56:08 +01:00
parent d30fa8b2ce
commit 87c1f4d576
3 changed files with 92 additions and 15 deletions

View file

@ -138,7 +138,8 @@ AppWindow::AppWindow(QWidget *parent)
}
modeHandler = new ModeHandler(this);
new ModeWindow(modeHandler, this);
auto modeWindow = new ModeWindow(modeHandler, this);
ui->menubar->insertMenu(ui->menuHelp->menuAction(), modeWindow->getMenu());
central = new QStackedWidget;
setCentralWidget(central);