diff options
author | s_nakamoto <s_nakamoto@1a98c847-1fd6-4fd8-948a-caf3550aa51b> | 2010-06-21 17:11:26 +0000 |
---|---|---|
committer | s_nakamoto <s_nakamoto@1a98c847-1fd6-4fd8-948a-caf3550aa51b> | 2010-06-21 17:11:26 +0000 |
commit | 161c38ba6025fba019e84dd4b799addc544ea1b3 (patch) | |
tree | d623f51ff9e92c220f2fbe0075bdb49e554e239b /ui.cpp | |
parent | 68b973a913fd1569d3a9a444d4233b15f7866e3e (diff) |
80x80 xpm icon for ubuntu, alignment tweaked to scale nicely to 20x20 and 16x16
git-svn-id: https://bitcoin.svn.sourceforge.net/svnroot/bitcoin/trunk@87 1a98c847-1fd6-4fd8-948a-caf3550aa51b
Diffstat (limited to 'ui.cpp')
-rw-r--r-- | ui.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -250,7 +250,7 @@ CMainFrame::CMainFrame(wxWindow* parent) : CMainFrameBase(parent) #ifdef __WXMSW__
SetIcon(wxICON(bitcoin));
#else
- SetIcon(bitcoin20_xpm);
+ SetIcon(bitcoin80_xpm);
SetBackgroundColour(m_toolBar->GetBackgroundColour());
wxFont fontTmp = m_staticText41->GetFont();
fontTmp.SetFamily(wxFONTFAMILY_TELETYPE);
@@ -2439,7 +2439,7 @@ void CMyTaskBarIcon::Show(bool fShow) #ifdef __WXMSW__
SetIcon(wxICON(bitcoin), strTooltip);
#else
- SetIcon(bitcoin20_xpm, strTooltip);
+ SetIcon(bitcoin80_xpm, strTooltip);
#endif
}
}
|