diff options
author | s_nakamoto <s_nakamoto@1a98c847-1fd6-4fd8-948a-caf3550aa51b> | 2010-06-21 18:41:34 +0000 |
---|---|---|
committer | s_nakamoto <s_nakamoto@1a98c847-1fd6-4fd8-948a-caf3550aa51b> | 2010-06-21 18:41:34 +0000 |
commit | 36bb88e1b9825f84c49c04643461dce823f70455 (patch) | |
tree | e622f7a8a920dec9b627c918faed8762b24af9ec /ui.cpp | |
parent | 161c38ba6025fba019e84dd4b799addc544ea1b3 (diff) |
fix system tray icon on windows
git-svn-id: https://bitcoin.svn.sourceforge.net/svnroot/bitcoin/trunk@88 1a98c847-1fd6-4fd8-948a-caf3550aa51b
Diffstat (limited to 'ui.cpp')
-rw-r--r-- | ui.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -2437,7 +2437,9 @@ void CMyTaskBarIcon::Show(bool fShow) {
strlcpy(pszPrevTip, strTooltip.c_str(), sizeof(pszPrevTip));
#ifdef __WXMSW__
- SetIcon(wxICON(bitcoin), strTooltip);
+ // somehow it'll choose the wrong icon and scale it down if
+ // we use the main icon, so we hand it one with only 16x16
+ SetIcon(wxICON(favicon), strTooltip);
#else
SetIcon(bitcoin80_xpm, strTooltip);
#endif
|