* 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:
Stephen Boddy 2015-10-01 03:23:57 +02:00
parent 195849a1ca
commit 29a864aa1b
1 changed files with 2 additions and 2 deletions

View File

@ -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',