diff options
| author | Wladimir J. van der Laan <[email protected]> | 2015-03-09 10:16:41 +0100 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2015-03-09 10:45:12 +0100 |
| commit | 513e0252391688b919f1b08980c5759a515c341b (patch) | |
| tree | 3cab52a33786b8b1980e97f16529587cfb2475e2 | |
| parent | Merge pull request #5855 (diff) | |
| parent | [Qt] fix a issue where "command line options"-action overwrite "Preference"-a... (diff) | |
| download | discoin-513e0252391688b919f1b08980c5759a515c341b.tar.xz discoin-513e0252391688b919f1b08980c5759a515c341b.zip | |
Merge pull request #5858
9bbb880 [Qt] fix a issue where "command line options"-action overwrite "Preference"-action (on OSX) (Jonas Schnelli)
| -rw-r--r-- | src/qt/bitcoingui.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/qt/bitcoingui.cpp b/src/qt/bitcoingui.cpp index a0dcb46e2..342099208 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())); |