From 117c5c8f0d1ac98186b20abcca4db43b34bb1281 Mon Sep 17 00:00:00 2001 From: Stephen Boddy Date: Sun, 11 Dec 2016 19:32:22 +0100 Subject: [PATCH] Fix the oversight of not clearing the css string if the handle size is -1, resulting in styling getting trashed by the previous declarations --- terminatorlib/terminator.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/terminatorlib/terminator.py b/terminatorlib/terminator.py index a728c0a2..4ad0055b 100755 --- a/terminatorlib/terminator.py +++ b/terminatorlib/terminator.py @@ -458,8 +458,9 @@ class Terminator(Borg): break # Size the GtkPaned splitter handle size. + css = "" if self.config['handle_size'] in xrange(0, 21): - css = """ + css += """ .terminator-terminal-window GtkPaned { -GtkPaned-handle-size: %s; } """ % self.config['handle_size']