mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-04-29 14:59:39 -04:00
fix system tray icon on windows
git-svn-id: https://bitcoin.svn.sourceforge.net/svnroot/bitcoin/trunk@88 1a98c847-1fd6-4fd8-948a-caf3550aa51b
This commit is contained in:
parent
161c38ba60
commit
36bb88e1b9
2 changed files with 4 additions and 1 deletions
4
ui.cpp
4
ui.cpp
|
@ -2437,7 +2437,9 @@ void CMyTaskBarIcon::Show(bool fShow)
|
||||||
{
|
{
|
||||||
strlcpy(pszPrevTip, strTooltip.c_str(), sizeof(pszPrevTip));
|
strlcpy(pszPrevTip, strTooltip.c_str(), sizeof(pszPrevTip));
|
||||||
#ifdef __WXMSW__
|
#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
|
#else
|
||||||
SetIcon(bitcoin80_xpm, strTooltip);
|
SetIcon(bitcoin80_xpm, strTooltip);
|
||||||
#endif
|
#endif
|
||||||
|
|
1
ui.rc
1
ui.rc
|
@ -12,3 +12,4 @@ addressbook16 BITMAP "rc/addressbook16.bmp"
|
||||||
addressbook16mask BITMAP "rc/addressbook16mask.bmp"
|
addressbook16mask BITMAP "rc/addressbook16mask.bmp"
|
||||||
addressbook20 BITMAP "rc/addressbook20.bmp"
|
addressbook20 BITMAP "rc/addressbook20.bmp"
|
||||||
addressbook20mask BITMAP "rc/addressbook20mask.bmp"
|
addressbook20mask BITMAP "rc/addressbook20mask.bmp"
|
||||||
|
favicon ICON "rc/favicon.ico"
|
||||||
|
|
Loading…
Add table
Reference in a new issue