diff options
author | Florent Le Coz <louiz@louiz.org> | 2011-11-16 02:26:08 +0100 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2011-11-16 02:26:08 +0100 |
commit | 4c262c77945f9243ea2a05d2f7980b26e5476cf9 (patch) | |
tree | 67e984f50f356fabe32629c3020239a498e2d178 /src | |
parent | efeb0ad58e04104021897c401c73c6e5ff2831d0 (diff) | |
parent | a40199d8ef689af6ec49bf7ec62979031744e425 (diff) | |
download | poezio-4c262c77945f9243ea2a05d2f7980b26e5476cf9.tar.gz poezio-4c262c77945f9243ea2a05d2f7980b26e5476cf9.tar.bz2 poezio-4c262c77945f9243ea2a05d2f7980b26e5476cf9.tar.xz poezio-4c262c77945f9243ea2a05d2f7980b26e5476cf9.zip |
Merge branch 'master' of http://git.louiz.org/poezio
Diffstat (limited to 'src')
-rw-r--r-- | src/windows.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/windows.py b/src/windows.py index c31954d9..2e2c0fd5 100644 --- a/src/windows.py +++ b/src/windows.py @@ -345,9 +345,9 @@ class VerticalGlobalInfoBar(Win): sorted_tabs = sorted_tabs[pos-height//2 : pos+height//2] for y, tab in enumerate(sorted_tabs): color = tab.vertical_color - self.addstr(y, 0, "%2d" % tab.nb, to_curses_attr(get_theme().COLOR_VERTICAL_TAB_NUMBER)) + self.addstr(y if config.get('vertical_tab_list_sort', 'desc') != 'asc' else height - y - 1, 0, "%2d" % tab.nb, to_curses_attr(get_theme().COLOR_VERTICAL_TAB_NUMBER)) self.addstr('.') - self._win.addnstr("%s" % tab.get_name(), width - 4, to_curses_attr(color)) + self.addnstr("%s" % tab.get_name(), width - 4, to_curses_attr(color)) self._refresh() class InfoWin(Win): |