From 30b31b32152d0f9ee4356016a88f75e64aabb632 Mon Sep 17 00:00:00 2001 From: Florent Le Coz Date: Fri, 1 Aug 2014 17:06:19 +0200 Subject: Fix an indentation issue introduced earlier (bar tab displaying only one tab) --- src/windows/info_bar.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'src/windows') diff --git a/src/windows/info_bar.py b/src/windows/info_bar.py index 390b7aea..10225d5d 100644 --- a/src/windows/info_bar.py +++ b/src/windows/info_bar.py @@ -53,13 +53,13 @@ class GlobalInfoBar(Win): self.addstr("|", to_curses_attr(get_theme().COLOR_INFORMATION_BAR)) except: # end of line break - (y, x) = self._win.getyx() - self.addstr(y, x-1, '] ', to_curses_attr(get_theme().COLOR_INFORMATION_BAR)) - (y, x) = self._win.getyx() - remaining_size = self.width - x - self.addnstr(' '*remaining_size, remaining_size, - to_curses_attr(get_theme().COLOR_INFORMATION_BAR)) - self._refresh() + (y, x) = self._win.getyx() + self.addstr(y, x-1, '] ', to_curses_attr(get_theme().COLOR_INFORMATION_BAR)) + (y, x) = self._win.getyx() + remaining_size = self.width - x + self.addnstr(' '*remaining_size, remaining_size, + to_curses_attr(get_theme().COLOR_INFORMATION_BAR)) + self._refresh() class VerticalGlobalInfoBar(Win): def __init__(self, scr): -- cgit v1.2.3