80x80 xpm icon for ubuntu, alignment tweaked to scale nicely to 20x20 and 16x16

This commit is contained in:
s_nakamoto
2010-06-21 17:11:26 +00:00
parent 3ca507a6eb
commit a66d097cbe
3 changed files with 295 additions and 2 deletions

4
ui.cpp
View File

@@ -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
}
}