From cf04e65983a133d8d9164ebda80ea0a5e89f4378 Mon Sep 17 00:00:00 2001 From: mathieui Date: Tue, 30 Dec 2014 23:55:31 +0100 Subject: Add a callback on enable_vertical_tab_list change --- src/core/core.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/core/core.py b/src/core/core.py index a750cfa3..c3c0c05e 100644 --- a/src/core/core.py +++ b/src/core/core.py @@ -313,6 +313,8 @@ class Core(object): self.on_theme_config_change) self.add_configuration_handler("password", self.on_password_change) + self.add_configuration_handler("enable_vertical_tab_list", + self.on_vertical_tab_list_config_change) self.add_configuration_handler("", self.on_any_config_change) @@ -375,6 +377,12 @@ class Core(object): path = os.path.expanduser(value) self.plugin_manager.on_plugins_dir_change(path) + def on_vertical_tab_list_config_change(self, option, value): + """ + Called when the enable_vertical_tab_list option is changed + """ + self.call_for_resize() + def on_plugins_conf_dir_config_change(self, option, value): """ Called when the plugins_conf_dir option is changed -- cgit v1.2.3