summaryrefslogtreecommitdiff
path: root/src/core/core.py
diff options
context:
space:
mode:
authorFlorent Le Coz <louiz@louiz.org>2014-12-09 16:43:23 +0100
committerFlorent Le Coz <louiz@louiz.org>2014-12-09 16:43:23 +0100
commit2e25595aec8c80cb2979acba50604345b79c1170 (patch)
tree16b7855b1e363ac1ef58fbc8e62e8ff368ddcf35 /src/core/core.py
parented7fe693b4e2a4354a7db58d03bc74f155f1ad71 (diff)
downloadpoezio-2e25595aec8c80cb2979acba50604345b79c1170.tar.gz
poezio-2e25595aec8c80cb2979acba50604345b79c1170.tar.bz2
poezio-2e25595aec8c80cb2979acba50604345b79c1170.tar.xz
poezio-2e25595aec8c80cb2979acba50604345b79c1170.zip
Introduce the go_to_previous_tab_on_alt_number option
fix #2841
Diffstat (limited to 'src/core/core.py')
-rw-r--r--src/core/core.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/core.py b/src/core/core.py
index f6b973ec..8d7f7fcf 100644
--- a/src/core/core.py
+++ b/src/core/core.py
@@ -592,7 +592,7 @@ class Core(object):
except ValueError:
pass
else:
- if self.current_tab().nb == nb:
+ if self.current_tab().nb == nb and config.get('go_to_previous_tab_on_alt_number'):
self.go_to_previous_tab()
else:
self.command_win('%d' % nb)