add DEFAULT_ICONSET in Config class. fixes #2731
This commit is contained in:
parent
62f7153bf1
commit
24d6c7ccaa
|
@ -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 ],
|
||||||
|
|
Loading…
Reference in New Issue