diff options
author | Gavin Andresen <gavinandresen@gmail.com> | 2011-05-05 08:17:14 -0700 |
---|---|---|
committer | Gavin Andresen <gavinandresen@gmail.com> | 2011-05-05 08:17:14 -0700 |
commit | 5c4aeb779ff457348ab4e466ad88746c288395ac (patch) | |
tree | 72761b4815f31d3bd1f2241a76841d4c42aa2113 | |
parent | 5f56b2862985b4324f4f5772b1833ded71f02053 (diff) | |
parent | d299c28eccd48a67aa479323d01fbfd963ba77d3 (diff) |
Merge pull request #194 from johnmaguire2013/tray
Removed tooltip balance until it's fixed.
-rw-r--r-- | ui.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -2594,9 +2594,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)"); |