Fix an indentation issue introduced earlier (bar tab displaying only one tab)

This commit is contained in:
Florent Le Coz 2014-08-01 17:06:19 +02:00
parent 30194a8a91
commit 30b31b3215

View file

@ -53,13 +53,13 @@ class GlobalInfoBar(Win):
self.addstr("|", to_curses_attr(get_theme().COLOR_INFORMATION_BAR)) self.addstr("|", to_curses_attr(get_theme().COLOR_INFORMATION_BAR))
except: # end of line except: # end of line
break break
(y, x) = self._win.getyx() (y, x) = self._win.getyx()
self.addstr(y, x-1, '] ', to_curses_attr(get_theme().COLOR_INFORMATION_BAR)) self.addstr(y, x-1, '] ', to_curses_attr(get_theme().COLOR_INFORMATION_BAR))
(y, x) = self._win.getyx() (y, x) = self._win.getyx()
remaining_size = self.width - x remaining_size = self.width - x
self.addnstr(' '*remaining_size, remaining_size, self.addnstr(' '*remaining_size, remaining_size,
to_curses_attr(get_theme().COLOR_INFORMATION_BAR)) to_curses_attr(get_theme().COLOR_INFORMATION_BAR))
self._refresh() self._refresh()
class VerticalGlobalInfoBar(Win): class VerticalGlobalInfoBar(Win):
def __init__(self, scr): def __init__(self, scr):