summaryrefslogtreecommitdiff
path: root/portato/gui/gui_helper.py
diff options
context:
space:
mode:
authornecoro <>2007-02-11 01:14:30 +0000
committernecoro <>2007-02-11 01:14:30 +0000
commit70e5e9ca4bb97feda6897cd40b3b5c97cc46f2ad (patch)
treeb8021eee8889d25a3bd5cc3b4e9e98d86405086b /portato/gui/gui_helper.py
parent9e981512aaba8804b25f14c0e1c34f4f93015a4f (diff)
downloadportato-70e5e9ca4bb97feda6897cd40b3b5c97cc46f2ad.tar.gz
portato-70e5e9ca4bb97feda6897cd40b3b5c97cc46f2ad.tar.bz2
portato-70e5e9ca4bb97feda6897cd40b3b5c97cc46f2ad.zip
Added usetips
Should have fixed segfaults with popups
Diffstat (limited to '')
-rw-r--r--portato/gui/gui_helper.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/portato/gui/gui_helper.py b/portato/gui/gui_helper.py
index 759752e..7808298 100644
--- a/portato/gui/gui_helper.py
+++ b/portato/gui/gui_helper.py
@@ -33,6 +33,7 @@ class Config:
"""Wrapper around a ConfigParser and for additional local configurations."""
const = {
"main_sec" : "Main",
+ "gtk_sec" : "Gtk",
"usePerVersion_opt" : "usePerVersion",
"useFile_opt" : "usefile",
"maskFile_opt" : "maskfile",
@@ -43,7 +44,8 @@ class Config:
"oneshot_opt" : "oneshot",
"deep_opt" : "deep",
"newuse_opt" : "newuse",
- "syncCmd_opt" : "synccommand"
+ "syncCmd_opt" : "synccommand",
+ "useTips_opt" : "showusetips"
}
def __init__ (self, cfgFile):