system management: fix number of callback arguments

fixes runtime warning:
TypeError: changePluginSize() takes exactly 4 arguments (3 given)

looks like it was overlooked in 66f76df4d3
This commit is contained in:
monsta 2019-08-05 13:09:39 +03:00 committed by GitHub
parent 703068ab65
commit 92c53a0516
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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