diff options
| author | Wladimir J. van der Laan <[email protected]> | 2012-08-29 10:52:01 -0700 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2012-08-29 10:52:01 -0700 |
| commit | c7df832d7aa6805d96f121ad458d7b45607c2f30 (patch) | |
| tree | 81bbaf06737813ce9e1505bec58405437b6e83bc | |
| parent | Merge pull request #1731 from luke-jr/opt_ipv6 (diff) | |
| parent | Update string for Show/Hide in the tray (diff) | |
| download | discoin-c7df832d7aa6805d96f121ad458d7b45607c2f30.tar.xz discoin-c7df832d7aa6805d96f121ad458d7b45607c2f30.zip | |
Merge pull request #1617 from Diapolo/Show_Hide_string
Update string for Show/Hide in the tray
| -rw-r--r-- | src/qt/bitcoingui.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/qt/bitcoingui.cpp b/src/qt/bitcoingui.cpp index 1bdc313da..27b974b5c 100644 --- a/src/qt/bitcoingui.cpp +++ b/src/qt/bitcoingui.cpp @@ -273,8 +273,7 @@ void BitcoinGUI::createActions() optionsAction = new QAction(QIcon(":/icons/options"), tr("&Options..."), this); optionsAction->setToolTip(tr("Modify configuration options for Bitcoin")); optionsAction->setMenuRole(QAction::PreferencesRole); - toggleHideAction = new QAction(QIcon(":/icons/bitcoin"), tr("Show/Hide &Bitcoin"), this); - toggleHideAction->setToolTip(tr("Show or hide the Bitcoin window")); + toggleHideAction = new QAction(QIcon(":/icons/bitcoin"), tr("&Show / Hide"), this); exportAction = new QAction(QIcon(":/icons/export"), tr("&Export..."), this); exportAction->setToolTip(tr("Export the data in the current tab to a file")); encryptWalletAction = new QAction(QIcon(":/icons/lock_closed"), tr("&Encrypt Wallet..."), this); @@ -463,7 +462,7 @@ void BitcoinGUI::trayIconActivated(QSystemTrayIcon::ActivationReason reason) { if(reason == QSystemTrayIcon::Trigger) { - // Click on system tray icon triggers "show/hide Bitcoin" + // Click on system tray icon triggers show/hide of the main window toggleHideAction->trigger(); } } |