* Set window geometry hints to off by default. The constant trickle of problems it causes are annoying.
May set up a warning dialog when turning on. * Actually set the DBUs interface to on by default. For some reason it wasn't active by default.
This commit is contained in:
parent
195849a1ca
commit
29a864aa1b
|
@ -86,10 +86,10 @@ except ImportError:
|
|||
|
||||
DEFAULTS = {
|
||||
'global_config': {
|
||||
'dbus' : False,
|
||||
'dbus' : True,
|
||||
'focus' : 'click',
|
||||
'handle_size' : -1,
|
||||
'geometry_hinting' : True,
|
||||
'geometry_hinting' : False,
|
||||
'window_state' : 'normal',
|
||||
'borderless' : False,
|
||||
'tab_position' : 'top',
|
||||
|
|
Loading…
Reference in New Issue