add DEFAULT_ICONSET in Config class. fixes #2731

This commit is contained in:
Yann Leboulanger 2006-12-01 20:01:37 +00:00
parent 62f7153bf1
commit 24d6c7ccaa
1 changed files with 2 additions and 2 deletions

View File

@ -39,10 +39,10 @@ opt_bool = [ 'boolean', 0 ]
opt_color = [ 'color', '^(#[0-9a-fA-F]{6})|()$' ] opt_color = [ 'color', '^(#[0-9a-fA-F]{6})|()$' ]
opt_one_window_types = ['never', 'always', 'peracct', 'pertype'] opt_one_window_types = ['never', 'always', 'peracct', 'pertype']
DEFAULT_ICONSET = 'dcraven'
class Config: class Config:
DEFAULT_ICONSET = 'dcraven'
__options = { __options = {
# name: [ type, default_value, help_string ] # name: [ type, default_value, help_string ]
'verbose': [ opt_bool, False, '', True ], 'verbose': [ opt_bool, False, '', True ],