diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/windows.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/windows.py b/src/windows.py index f2ffc8a7..a13efdf5 100644 --- a/src/windows.py +++ b/src/windows.py @@ -303,6 +303,8 @@ class GlobalInfoBar(Win): continue try: self.addstr("%s" % str(tab.nb), to_curses_attr(color)) + if config.get('show_tab_names', 'false') == 'true': + self.addstr(" %s" % str(tab.get_name()), to_curses_attr(color)) self.addstr("|", to_curses_attr(get_theme().COLOR_INFORMATION_BAR)) except: # end of line break |