Don't refresh icons on icon theme change (this is a regression, but since the migration to g.i. this makes mintmenu crash)

This commit is contained in:
Clement Lefebvre 2013-05-07 13:52:32 +02:00
parent 43c1aed64e
commit 924342161a

View File

@ -208,7 +208,9 @@ class easyButton( Gtk.Button ):
# IconTheme changed, setup new button icons
def themeChanged( self, theme ):
self.iconChanged()
#self.iconChanged()
# Do nothing, this crashes mintmenu with a segfault..
pass
def iconChanged( self ):
icon = self.getIcon( self.iconSize )