From c8ddc6329a5cf2f31a7021aac9a55f4d3f3c480d Mon Sep 17 00:00:00 2001 From: mathieui Date: Thu, 28 May 2020 00:48:28 +0200 Subject: Properly refresh the bookmarks method in the bookmarks tab MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit … … … --- poezio/windows/bookmark_forms.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'poezio/windows/bookmark_forms.py') diff --git a/poezio/windows/bookmark_forms.py b/poezio/windows/bookmark_forms.py index 28cab8ec..d538e6a2 100644 --- a/poezio/windows/bookmark_forms.py +++ b/poezio/windows/bookmark_forms.py @@ -269,7 +269,7 @@ class BookmarksWin(Win): self.current_horizontal_input].set_color( theme.COLOR_NORMAL_TEXT) self.current_horizontal_input += 1 - if self.current_horizontal_input > 3: + if self.current_horizontal_input > 4: self.current_horizontal_input = 0 self.lines[self.current_input][ self.current_horizontal_input].set_color( @@ -363,7 +363,7 @@ class BookmarksWin(Win): continue if i >= self.height + self.scroll_pos: break - for j in range(4): + for j in range(5): inp[j].refresh() if self.lines and self.current_input < self.height - 1: -- cgit v1.2.3