From 5ae299e6da2f34a409ad23f55ec25fbfd42bbd08 Mon Sep 17 00:00:00 2001 From: Chris Jones Date: Sun, 10 Jan 2010 23:58:05 +0000 Subject: [PATCH] Make the OK button in the preferences editor reconfigure all live terminals --- terminatorlib/prefseditor.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/terminatorlib/prefseditor.py b/terminatorlib/prefseditor.py index ff589100..2e199d70 100755 --- a/terminatorlib/prefseditor.py +++ b/terminatorlib/prefseditor.py @@ -9,6 +9,7 @@ import config from keybindings import Keybindings, KeymapError from version import APP_NAME, APP_VERSION from translation import _ +from newterminator import Terminator # FIXME: We need to check that we have represented all of Config() below class PrefsEditor: @@ -105,6 +106,8 @@ class PrefsEditor: """Save the config""" self.store_values() self.config.save() + terminator = Terminator() + terminator.reconfigure_terminals() self.window.destroy() del(self)