From f067e5355b82d640a032877e203fbc5be0a3c13d Mon Sep 17 00:00:00 2001 From: Stephen Boddy Date: Thu, 26 Sep 2013 00:07:01 +0200 Subject: [PATCH] Reload the config before we write to it or we could overwrite something from another instance. --- terminatorlib/container.py | 1 + 1 file changed, 1 insertion(+) diff --git a/terminatorlib/container.py b/terminatorlib/container.py index a581f225..cecd8588 100755 --- a/terminatorlib/container.py +++ b/terminatorlib/container.py @@ -197,6 +197,7 @@ the %s will also close all terminals within it.') % (reqtype, reqtype)) result = dialog.run() # set configuration + self.config.base.reload() self.config['suppress_multiple_term_dialog'] = checkbox.get_active() self.config.save()