removed tooltip balance until it can be made to change without opening the UI
This commit is contained in:
parent
e5577d5541
commit
d299c28ecc
1 changed files with 2 additions and 2 deletions
4
ui.cpp
4
ui.cpp
|
@ -2617,9 +2617,9 @@ void CMyTaskBarIcon::Show(bool fShow)
|
||||||
static char pszPrevTip[200];
|
static char pszPrevTip[200];
|
||||||
if (fShow)
|
if (fShow)
|
||||||
{
|
{
|
||||||
string strTooltip = strprintf(_("Balance: %s"), FormatMoney(GetBalance()).c_str());
|
string strTooltip = _("Bitcoin");
|
||||||
if (fGenerateBitcoins)
|
if (fGenerateBitcoins)
|
||||||
strTooltip = strprintf(_("Bitcoin - Generating (Balance: %s)"), FormatMoney(GetBalance()).c_str());
|
strTooltip = _("Bitcoin - Generating");
|
||||||
if (fGenerateBitcoins && vNodes.empty())
|
if (fGenerateBitcoins && vNodes.empty())
|
||||||
strTooltip = _("Bitcoin - (not connected)");
|
strTooltip = _("Bitcoin - (not connected)");
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue