From 924342161a2370ae083cc28f4a94a0033ff5229b Mon Sep 17 00:00:00 2001 From: Clement Lefebvre Date: Tue, 7 May 2013 13:52:32 +0200 Subject: [PATCH] Don't refresh icons on icon theme change (this is a regression, but since the migration to g.i. this makes mintmenu crash) --- usr/lib/linuxmint/mintMenu/plugins/easybuttons.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/usr/lib/linuxmint/mintMenu/plugins/easybuttons.py b/usr/lib/linuxmint/mintMenu/plugins/easybuttons.py index afe2741..e274505 100755 --- a/usr/lib/linuxmint/mintMenu/plugins/easybuttons.py +++ b/usr/lib/linuxmint/mintMenu/plugins/easybuttons.py @@ -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 )