diff --git a/usr/lib/linuxmint/mintMenu/plugins/places.py b/usr/lib/linuxmint/mintMenu/plugins/places.py index c47026d..0ba4d7e 100755 --- a/usr/lib/linuxmint/mintMenu/plugins/places.py +++ b/usr/lib/linuxmint/mintMenu/plugins/places.py @@ -74,7 +74,7 @@ class pluginclass(object): if self.showtrash: self.refreshTrash() - def changePluginSize(self, settings, key, args = None): + def changePluginSize(self, settings, key): self.allowScrollbar = self.settings.get_boolean("allow-scrollbar") self.width = self.settings.get_int("width") if not self.allowScrollbar: diff --git a/usr/lib/linuxmint/mintMenu/plugins/system_management.py b/usr/lib/linuxmint/mintMenu/plugins/system_management.py index cae13af..5b5ef8c 100755 --- a/usr/lib/linuxmint/mintMenu/plugins/system_management.py +++ b/usr/lib/linuxmint/mintMenu/plugins/system_management.py @@ -65,7 +65,7 @@ class pluginclass(object): def wake(self): pass - def changePluginSize(self, settings, key, args): + def changePluginSize(self, settings, key): self.allowScrollbar = self.settings.get_boolean("allow-scrollbar") if key == "width": self.width = settings.get_int(key)