replaces the handle_size property that was deprecated in gtk3.20

This commit is contained in:
Matt Rose 2020-06-21 11:44:26 -04:00
parent 480bc47d0b
commit 4db7df5ea1
1 changed files with 5 additions and 4 deletions

View File

@ -541,10 +541,11 @@ class Terminator(Borg):
css = ""
if self.config['handle_size'] in range(0, 21):
css += """
.terminator-terminal-window GtkPaned,
.terminator-terminal-window paned {
-GtkPaned-handle-size: %s; }
""" % self.config['handle_size']
.terminator-terminal-window separator {
min-height: %spx;
min-width: %spx;
}
""" % (self.config['handle_size'],self.config['handle_size'])
style_provider = Gtk.CssProvider()
style_provider.load_from_data(css.encode('utf-8'))
self.style_providers.append(style_provider)