From d56f3b609fb0e21a48b4c245a31b6916c876d71a Mon Sep 17 00:00:00 2001 From: Stephen Boddy Date: Sat, 7 Nov 2015 01:25:01 +0100 Subject: [PATCH] (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. --- terminatorlib/config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/terminatorlib/config.py b/terminatorlib/config.py index f14b151b..52b34430 100755 --- a/terminatorlib/config.py +++ b/terminatorlib/config.py @@ -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',