From: John Maguire Date: Thu, 5 May 2011 14:49:20 +0000 (-0400) Subject: removed tooltip balance until it can be made to change without opening the UI X-Git-Tag: v0.4.0-unstable~234^2~95^2 X-Git-Url: https://git.novaco.in/?p=novacoin.git;a=commitdiff_plain;h=d299c28eccd48a67aa479323d01fbfd963ba77d3 removed tooltip balance until it can be made to change without opening the UI --- diff --git a/ui.cpp b/ui.cpp index 5e53489..2852d44 100644 --- a/ui.cpp +++ b/ui.cpp @@ -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)");