mirror of
https://github.com/overte-org/overte.git
synced 2025-04-23 06:53:46 +02: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,8 +1192,10 @@ 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);
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
#include <cstring>
|
||||
#include <glm/glm.hpp>
|
||||
#include "Log.h"
|
||||
#include <stdint.h>
|
||||
#include <stdint.h>
|
||||
|
||||
const float DELTA_TIME = 1.f / 60.f;
|
||||
const float DECAY_RATE = 0.15f;
|
||||
|
|
Loading…
Reference in a new issue