Fix the oversight of not clearing the css string if the handle size is -1, resulting in styling getting trashed by the previous declarations
This commit is contained in:
parent
4fcbabdab5
commit
117c5c8f0d
|
@ -458,8 +458,9 @@ class Terminator(Borg):
|
||||||
break
|
break
|
||||||
|
|
||||||
# Size the GtkPaned splitter handle size.
|
# Size the GtkPaned splitter handle size.
|
||||||
|
css = ""
|
||||||
if self.config['handle_size'] in xrange(0, 21):
|
if self.config['handle_size'] in xrange(0, 21):
|
||||||
css = """
|
css += """
|
||||||
.terminator-terminal-window GtkPaned {
|
.terminator-terminal-window GtkPaned {
|
||||||
-GtkPaned-handle-size: %s; }
|
-GtkPaned-handle-size: %s; }
|
||||||
""" % self.config['handle_size']
|
""" % self.config['handle_size']
|
||||||
|
|
Loading…
Reference in New Issue