diff options
author | necoro <> | 2007-04-25 23:21:14 +0000 |
---|---|---|
committer | necoro <> | 2007-04-25 23:21:14 +0000 |
commit | eb2d5a7590bbbe91abe5d8f8a79624d6f756daba (patch) | |
tree | 445ca6391f3b7de33a3c2ee9f8b9e42e4688dc58 /portato/gui/gui_helper.py | |
parent | 28c524e8243f9eb41f2ecb7197e33711727526d9 (diff) | |
download | portato-eb2d5a7590bbbe91abe5d8f8a79624d6f756daba.tar.gz portato-eb2d5a7590bbbe91abe5d8f8a79624d6f756daba.tar.bz2 portato-eb2d5a7590bbbe91abe5d8f8a79624d6f756daba.zip |
added systray
Diffstat (limited to '')
-rw-r--r-- | portato/gui/gui_helper.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/portato/gui/gui_helper.py b/portato/gui/gui_helper.py index 656b83a..a898ea7 100644 --- a/portato/gui/gui_helper.py +++ b/portato/gui/gui_helper.py @@ -36,6 +36,7 @@ class Config: # XXX: This needs to be replaced - the const-dict is just messy "main_sec" : "Main", "gtk_sec" : "Gtk", "qt_sec" : "Qt", + "gui_sec" : "Gui", "usePerVersion_opt" : "usePerVersion", "useFile_opt" : "usefile", "maskFile_opt" : "maskfile", @@ -49,7 +50,9 @@ class Config: # XXX: This needs to be replaced - the const-dict is just messy "syncCmd_opt" : "synccommand", "useTips_opt" : "showusetips", "pkgIcons_opt" : "packageIcons", - "system_opt" : "system" + "system_opt" : "system", + "systray_opt" : "showsystray", + "minimize_opt" : "hideonminimize" } def __init__ (self, cfgFile): |