(trunk-1664)

* 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-11-07 01:25:01 +01:00
parent be510d0d3e
commit d56f3b609f
1 changed files with 2 additions and 2 deletions

View File

@ -88,10 +88,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',