mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01:00
moved pair to own menu
This commit is contained in:
parent
bcf13b9754
commit
a03d6f8d80
2 changed files with 4 additions and 2 deletions
|
@ -1192,9 +1192,11 @@ void Application::initMenu() {
|
|||
_window->setMenuBar(menuBar);
|
||||
|
||||
QMenu* fileMenu = menuBar->addMenu("File");
|
||||
fileMenu->addAction("Pair", this, SLOT(pair()));
|
||||
fileMenu->addAction("Quit", this, SLOT(quit()), Qt::Key_Q);
|
||||
|
||||
QMenu* pairMenu = menuBar->addMenu("Pair");
|
||||
pairMenu->addAction("Pair", this, SLOT(pair()));
|
||||
|
||||
QMenu* optionsMenu = menuBar->addMenu("Options");
|
||||
(_lookingInMirror = optionsMenu->addAction("Mirror", this, SLOT(setHead(bool)), Qt::Key_H))->setCheckable(true);
|
||||
optionsMenu->addAction("Noise", this, SLOT(setNoise(bool)), Qt::Key_N)->setCheckable(true);
|
||||
|
|
Loading…
Reference in a new issue