Better pass kwargs
this is not py2 anymore
This commit is contained in:
parent
2f2a9b985b
commit
6b2766e668
@ -428,9 +428,7 @@ init -1 python:
|
||||
class SVGradientButton(ImageButton):
|
||||
|
||||
def __init__(self, on_click, idle_image, *args, **kwargs):
|
||||
kwargs['sensitive'] = True
|
||||
kwargs['action'] = NullAction()
|
||||
super(SVGradientButton, self).__init__(idle_image, *args, **kwargs)
|
||||
super(SVGradientButton, self).__init__(idle_image, *args, sensitive=True, action=NullAction(), **kwargs)
|
||||
self.width = 0
|
||||
self.height = 0
|
||||
self.on_click = on_click
|
||||
|
Loading…
Reference in New Issue
Block a user