Handle on_hide_window() being called with no data. It may actually always be called that way
This commit is contained in:
parent
d8343002f9
commit
5c43b371e9
|
@ -197,7 +197,7 @@ class Window(Container, gtk.Window):
|
||||||
self.destroy()
|
self.destroy()
|
||||||
del(self)
|
del(self)
|
||||||
|
|
||||||
def on_hide_window(self, data):
|
def on_hide_window(self, data=None):
|
||||||
"""Handle a request to hide/show the window"""
|
"""Handle a request to hide/show the window"""
|
||||||
# FIXME: Implement or drop, or explain why its empty
|
# FIXME: Implement or drop, or explain why its empty
|
||||||
pass
|
pass
|
||||||
|
|
Loading…
Reference in New Issue