Skip to content

Commit c7df832

Browse files
committed
Merge pull request bitcoin#1617 from Diapolo/Show_Hide_string
Update string for Show/Hide in the tray
2 parents 1b4bd4c + e273c51 commit c7df832

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/qt/bitcoingui.cpp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -273,8 +273,7 @@ void BitcoinGUI::createActions()
273273
optionsAction = new QAction(QIcon(":/icons/options"), tr("&Options..."), this);
274274
optionsAction->setToolTip(tr("Modify configuration options for Bitcoin"));
275275
optionsAction->setMenuRole(QAction::PreferencesRole);
276-
toggleHideAction = new QAction(QIcon(":/icons/bitcoin"), tr("Show/Hide &Bitcoin"), this);
277-
toggleHideAction->setToolTip(tr("Show or hide the Bitcoin window"));
276+
toggleHideAction = new QAction(QIcon(":/icons/bitcoin"), tr("&Show / Hide"), this);
278277
exportAction = new QAction(QIcon(":/icons/export"), tr("&Export..."), this);
279278
exportAction->setToolTip(tr("Export the data in the current tab to a file"));
280279
encryptWalletAction = new QAction(QIcon(":/icons/lock_closed"), tr("&Encrypt Wallet..."), this);
@@ -463,7 +462,7 @@ void BitcoinGUI::trayIconActivated(QSystemTrayIcon::ActivationReason reason)
463462
{
464463
if(reason == QSystemTrayIcon::Trigger)
465464
{
466-
// Click on system tray icon triggers "show/hide Bitcoin"
465+
// Click on system tray icon triggers show/hide of the main window
467466
toggleHideAction->trigger();
468467
}
469468
}

0 commit comments

Comments
 (0)