diff options
author | René 'Necoro' Neumann <necoro@necoro.net> | 2009-04-25 11:15:52 +0200 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.net> | 2009-04-25 11:15:52 +0200 |
commit | 1091a8192ba7a5ccdc6a3c31d87864939fe4adb6 (patch) | |
tree | 55a26a282d7009f6b5ec382858ec91f34dea43a3 /portato/gui/windows | |
parent | a45b060d340a3b5826c85c3348fa8ffa94827db1 (diff) | |
download | portato-1091a8192ba7a5ccdc6a3c31d87864939fe4adb6.tar.gz portato-1091a8192ba7a5ccdc6a3c31d87864939fe4adb6.tar.bz2 portato-1091a8192ba7a5ccdc6a3c31d87864939fe4adb6.zip |
Add emerge options slot
Diffstat (limited to '')
-rw-r--r-- | portato/gui/windows/main.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/portato/gui/windows/main.py b/portato/gui/windows/main.py index 0259fc7..290fe6a 100644 --- a/portato/gui/windows/main.py +++ b/portato/gui/windows/main.py @@ -585,6 +585,9 @@ class MainWindow (Window): # set plugins and plugin-menu splash(_("Loading Plugins")) + optionsHB = self.tree.get_widget("optionsHB") + plugin.WidgetSlot(gtk.CheckButton, "Emerge Options", add = lambda w: optionsHB.pack_end(w.widget)) + PluginMenuSlot(self.tree) plugin.load_plugins() |