From 24d6c7ccaa5e7c8628aaf79cd737fa4358b1b84a Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Fri, 1 Dec 2006 20:01:37 +0000 Subject: [PATCH] add DEFAULT_ICONSET in Config class. fixes #2731 --- src/common/config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/common/config.py b/src/common/config.py index 44c982059..f32bf8f92 100644 --- a/src/common/config.py +++ b/src/common/config.py @@ -39,10 +39,10 @@ opt_bool = [ 'boolean', 0 ] opt_color = [ 'color', '^(#[0-9a-fA-F]{6})|()$' ] opt_one_window_types = ['never', 'always', 'peracct', 'pertype'] -DEFAULT_ICONSET = 'dcraven' - class Config: + DEFAULT_ICONSET = 'dcraven' + __options = { # name: [ type, default_value, help_string ] 'verbose': [ opt_bool, False, '', True ],