From 784f2d287623d2dbaac16343d5bf10b3a68bd0f7 Mon Sep 17 00:00:00 2001 From: mathieui Date: Sat, 21 Jul 2018 21:05:42 +0200 Subject: Fix the move_tab command --- poezio/core/core.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/poezio/core/core.py b/poezio/core/core.py index 51f6f41e..641ce213 100644 --- a/poezio/core/core.py +++ b/poezio/core/core.py @@ -398,7 +398,7 @@ class Core: Called when the option create_gaps is changed. Remove all gaptabs if switching from gaps to nogaps. """ - self.tabs.update_gaps(value.lower() == "false") + self.tabs.update_gaps(value.lower() != "false") def on_request_receipts_config_change(self, option, value): """ @@ -1019,7 +1019,8 @@ class Core: Insert a tab at a position, changing the number of the following tabs returns False if it could not move the tab, True otherwise """ - self.tabs.insert_tab(old_pos, new_pos, config.get('create_gaps')) + return self.tabs.insert_tab(old_pos, new_pos, + config.get('create_gaps')) ### Move actions (e.g. go to next room) ### -- cgit v1.2.3