diff options
Diffstat (limited to 'portato/gui/gui_helper.py')
-rw-r--r-- | portato/gui/gui_helper.py | 4 |
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): |