summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2012-09-02 14:35:38 +0200
committermathieui <mathieui@mathieui.net>2012-09-13 09:50:48 +0200
commitc2828cdd29749609b4e16d2d461ac6b39c822573 (patch)
tree577f12d9498a2d83157e4a05dac4af8c703c6ab7 /src
parentea96c40f66de1620ec1824e676a086dd36eb052f (diff)
downloadpoezio-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
Diffstat (limited to 'src')
-rw-r--r--src/core.py2
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):