From eef5ffb01f0acc11b5cfa8f17a334a00c25b0522 Mon Sep 17 00:00:00 2001 From: nojhan Date: Tue, 9 Mar 2021 09:22:22 +0100 Subject: [PATCH] fix link_single_click configuration --- terminatorlib/prefseditor.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/terminatorlib/prefseditor.py b/terminatorlib/prefseditor.py index 1193cc43..74e08164 100755 --- a/terminatorlib/prefseditor.py +++ b/terminatorlib/prefseditor.py @@ -1423,6 +1423,9 @@ class PrefsEditor: self.config.save() def on_link_single_click_toggled(self, checkbox): + """Configure link_single_click option from checkbox.""" + guiget = self.builder.get_object + widget = guiget('link_single_click') self.config['link_single_click'] = widget.get_active() self.config.save()