diff options
| author | John Maguire <[email protected]> | 2011-05-05 10:49:20 -0400 |
|---|---|---|
| committer | John Maguire <[email protected]> | 2011-05-05 10:49:20 -0400 |
| commit | d299c28eccd48a67aa479323d01fbfd963ba77d3 (patch) | |
| tree | 1fad70c596f97d90077d74bab03f88111e5b953a | |
| parent | Fix broken build (remove declarations of GUI generate methods) (diff) | |
| download | discoin-d299c28eccd48a67aa479323d01fbfd963ba77d3.tar.xz discoin-d299c28eccd48a67aa479323d01fbfd963ba77d3.zip | |
removed tooltip balance until it can be made to change without opening the UI
| -rw-r--r-- | ui.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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)"); |