diff options
author | René 'Necoro' Neumann <necoro@necoro.net> | 2008-03-26 01:31:26 +0100 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.net> | 2008-03-26 01:31:26 +0100 |
commit | 9e242ddcc92fefc536b36d074b1f61069829a210 (patch) | |
tree | 5620632d5fd7133a4b59ffd45d448b98c995b6f4 /portato/gui/windows | |
parent | 2144655a5e03cf86cb9774c7bdb04021805107d8 (diff) | |
download | portato-9e242ddcc92fefc536b36d074b1f61069829a210.tar.gz portato-9e242ddcc92fefc536b36d074b1f61069829a210.tar.bz2 portato-9e242ddcc92fefc536b36d074b1f61069829a210.zip |
Fixed after_startup hook
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) |