removed tooltip balance until it can be made to change without opening the UI

This commit is contained in:
John Maguire 2011-05-05 10:49:20 -04:00
parent e5577d5541
commit d299c28ecc
1 changed files with 2 additions and 2 deletions

4
ui.cpp
View File

@ -2617,9 +2617,9 @@ void CMyTaskBarIcon::Show(bool fShow)
static char pszPrevTip[200];
if (fShow)
{
string strTooltip = strprintf(_("Balance: %s"), FormatMoney(GetBalance()).c_str());
string strTooltip = _("Bitcoin");
if (fGenerateBitcoins)
strTooltip = strprintf(_("Bitcoin - Generating (Balance: %s)"), FormatMoney(GetBalance()).c_str());
strTooltip = _("Bitcoin - Generating");
if (fGenerateBitcoins && vNodes.empty())
strTooltip = _("Bitcoin - (not connected)");