From 6e9a6f9a8d113fd099a0cdf9a53bef54bec5913d Mon Sep 17 00:00:00 2001 From: Eberhard Graether Date: Wed, 20 Jul 2016 15:57:45 +0200 Subject: [PATCH] ui: Moved Preferences to Edit menu bug id = 113 --- src/lib_gui/qt/window/QtMainWindow.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/lib_gui/qt/window/QtMainWindow.cpp b/src/lib_gui/qt/window/QtMainWindow.cpp index 70d83ab7..8252a793 100644 --- a/src/lib_gui/qt/window/QtMainWindow.cpp +++ b/src/lib_gui/qt/window/QtMainWindow.cpp @@ -599,6 +599,10 @@ void QtMainWindow::setupEditMenu() menu->addSeparator(); menu->addAction(tr("&To overview"), this, SLOT(overview()), QKeySequence::MoveToStartOfDocument); + + menu->addSeparator(); + + menu->addAction(tr("Preferences..."), this, SLOT(openSettings())); } void QtMainWindow::setupViewMenu() @@ -640,7 +644,6 @@ void QtMainWindow::setupHelpMenu() if(!isTrial()) { menu->addAction(tr("Enter License..."), this, SLOT(enterLicense())); - menu->addAction(tr("Preferences..."), this, SLOT(openSettings())); } }