diff options
author | mathieui <mathieui@mathieui.net> | 2012-09-02 14:35:38 +0200 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2012-09-13 09:50:48 +0200 |
commit | c2828cdd29749609b4e16d2d461ac6b39c822573 (patch) | |
tree | 577f12d9498a2d83157e4a05dac4af8c703c6ab7 | |
parent | ea96c40f66de1620ec1824e676a086dd36eb052f (diff) | |
download | poezio-c2828cdd29749609b4e16d2d461ac6b39c822573.tar.gz poezio-c2828cdd29749609b4e16d2d461ac6b39c822573.tar.bz2 poezio-c2828cdd29749609b4e16d2d461ac6b39c822573.tar.xz poezio-c2828cdd29749609b4e16d2d461ac6b39c822573.zip |
Make the toggle left pane permanent
previously, the change wasn’t saved
-rw-r--r-- | src/core.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core.py b/src/core.py index b34c38ca..c8ce2324 100644 --- a/src/core.py +++ b/src/core.py @@ -1066,7 +1066,7 @@ class Core(object): Enable/disable the left panel. """ enabled = config.get('enable_vertical_tab_list', 'false') - config.set('enable_vertical_tab_list', 'false' if enabled == 'true' else 'true') + config.set_and_save('enable_vertical_tab_list', 'false' if enabled == 'true' else 'true') self.call_for_resize() def resize_global_information_win(self): |