From ce2f35fa7677b1ff6b38eaf4e6934494ccbf87dc Mon Sep 17 00:00:00 2001 From: clhodapp Date: Sat, 31 Oct 2009 07:56:25 +0800 Subject: [PATCH] Removed unneeded calls to changePluginSize() Calls are no longer required now that GetGconfEntries() functions have been altered to perform the required operations --- usr/lib/linuxmint/mintMenu/plugins/places.py | 1 - usr/lib/linuxmint/mintMenu/plugins/system_management.py | 1 - 2 files changed, 2 deletions(-) diff --git a/usr/lib/linuxmint/mintMenu/plugins/places.py b/usr/lib/linuxmint/mintMenu/plugins/places.py index 9e85ba8..65baa38 100755 --- a/usr/lib/linuxmint/mintMenu/plugins/places.py +++ b/usr/lib/linuxmint/mintMenu/plugins/places.py @@ -54,7 +54,6 @@ class pluginclass( object ): self.gconf.notifyAdd( "show_home_folder", self.RegenPlugin ) self.gconf.notifyAdd( "show_trash", self.RegenPlugin ) self.gconf.notifyAdd( "custom_names", self.RegenPlugin ) - self.gconf.notifyAdd( "allowScrollbar", self.changePluginSize ) self.gconf.notifyAdd( "allowScrollbar", self.RegenPlugin ) self.gconf.notifyAdd( "height", self.changePluginSize ) self.gconf.notifyAdd( "width", self.changePluginSize ) diff --git a/usr/lib/linuxmint/mintMenu/plugins/system_management.py b/usr/lib/linuxmint/mintMenu/plugins/system_management.py index d0145c7..826b91e 100755 --- a/usr/lib/linuxmint/mintMenu/plugins/system_management.py +++ b/usr/lib/linuxmint/mintMenu/plugins/system_management.py @@ -54,7 +54,6 @@ class pluginclass( object ): self.gconf.notifyAdd( "show_software_manager", self.RegenPlugin ) self.gconf.notifyAdd( "show_terminal", self.RegenPlugin ) self.gconf.notifyAdd( "show_quit", self.RegenPlugin ) - self.gconf.notifyAdd( "allowScrollbar", self.changePluginSize ) self.gconf.notifyAdd( "allowScrollbar", self.RegenPlugin ) self.gconf.notifyAdd( "height", self.changePluginSize ) self.gconf.notifyAdd( "width", self.changePluginSize )