aboutsummaryrefslogtreecommitdiff
path: root/src/qt
diff options
context:
space:
mode:
authorJonas Schnelli <jonas.schnelli@include7.ch>2015-03-06 09:33:23 +0100
committerJonas Schnelli <jonas.schnelli@include7.ch>2015-03-06 09:33:23 +0100
commit9bbb880be44dbc378bdd3210eed42eaa77efb774 (patch)
tree01a9d73b9192cfe30acd2e7f4e20ddffe3f4480f /src/qt
parent84a05b843b8ab704266289de67c9779ad733a196 (diff)
downloadbitcoin-9bbb880be44dbc378bdd3210eed42eaa77efb774.tar.xz
[Qt] fix a issue where "command line options"-action overwrite "Preference"-action (on OSX)
- fixes #5800
Diffstat (limited to 'src/qt')
-rw-r--r--src/qt/bitcoingui.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/qt/bitcoingui.cpp b/src/qt/bitcoingui.cpp
index a0dcb46e27..3420992081 100644
--- a/src/qt/bitcoingui.cpp
+++ b/src/qt/bitcoingui.cpp
@@ -340,6 +340,7 @@ void BitcoinGUI::createActions()
openAction->setStatusTip(tr("Open a bitcoin: URI or payment request"));
showHelpMessageAction = new QAction(TextColorIcon(":/icons/info"), tr("&Command-line options"), this);
+ showHelpMessageAction->setMenuRole(QAction::NoRole);
showHelpMessageAction->setStatusTip(tr("Show the Bitcoin Core help message to get a list with possible Bitcoin command-line options"));
connect(quitAction, SIGNAL(triggered()), qApp, SLOT(quit()));