diff options
Diffstat (limited to '')
-rw-r--r-- | portato/gui/windows/main.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/portato/gui/windows/main.py b/portato/gui/windows/main.py index 6820f61..7cc07c4 100644 --- a/portato/gui/windows/main.py +++ b/portato/gui/windows/main.py @@ -780,8 +780,7 @@ class MainWindow (Window): self.window.show_all() - after = lambda: pass # dummy function doing nothing - plugin.hook("after_startup")(after)() + plugin.hook("after_startup")(lambda: True)() def show_package (self, *args, **kwargs): self.packageTable.update(*args, **kwargs) |