diff options
author | Florent Le Coz <louiz@louiz.org> | 2011-11-16 03:10:37 +0100 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2011-11-16 03:10:37 +0100 |
commit | c5b15c8119c37343e1b546ae96b11959dd2cd394 (patch) | |
tree | 616ae1b8cda23851077132e849faefad317e197b /src/core.py | |
parent | a40199d8ef689af6ec49bf7ec62979031744e425 (diff) | |
download | poezio-c5b15c8119c37343e1b546ae96b11959dd2cd394.tar.gz poezio-c5b15c8119c37343e1b546ae96b11959dd2cd394.tar.bz2 poezio-c5b15c8119c37343e1b546ae96b11959dd2cd394.tar.xz poezio-c5b15c8119c37343e1b546ae96b11959dd2cd394.zip |
Disable horizontal tab list when vertical one is enabled.
Diffstat (limited to 'src/core.py')
-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 8e2cccea..311c187d 100644 --- a/src/core.py +++ b/src/core.py @@ -213,7 +213,7 @@ class Core(object): """ with g_lock: self.information_win.resize(self.information_win_size, tabs.Tab.width, - tabs.Tab.height - 2 - self.information_win_size, 0) + tabs.Tab.height - 1 - self.information_win_size - tabs.Tab.tab_win_height(), 0) def resize_global_info_bar(self): """ |