Merge #9130: Mention the new network toggle functionality in the tooltip.

1260c11 Mention the new network toggle functionality in the tooltip. (Pavel Janík)
This commit is contained in:
Jonas Schnelli 2016-11-22 15:32:39 +01:00
commit ac489b2445
No known key found for this signature in database
GPG key ID: 29D4BCB6416F53EC

View file

@ -713,13 +713,19 @@ void BitcoinGUI::updateNetworkState()
default: icon = ":/icons/connect_4"; break;
}
QString tooltip;
if (clientModel->getNetworkActive()) {
connectionsControl->setToolTip(tr("%n active connection(s) to Bitcoin network", "", count));
tooltip = tr("%n active connection(s) to Bitcoin network", "", count) + QString(".<br>") + tr("Click to disable network activity.");
} else {
connectionsControl->setToolTip(tr("Network activity disabled"));
tooltip = tr("Network activity disabled.") + QString("<br>") + tr("Click to enable network activity again.");
icon = ":/icons/network_disabled";
}
// Don't word-wrap this (fixed-width) tooltip
tooltip = QString("<nobr>") + tooltip + QString("</nobr>");
connectionsControl->setToolTip(tooltip);
connectionsControl->setPixmap(platformStyle->SingleColorIcon(icon).pixmap(STATUSBAR_ICONSIZE,STATUSBAR_ICONSIZE));
}