From e998210865eb94a14e4ab472fb18fc97dc0012b2 Mon Sep 17 00:00:00 2001 From: Armaan Bhojwani Date: Sun, 14 Feb 2021 00:23:30 -0500 Subject: [PATCH] Fix sidebar "(xyz more)" text ... again --- lightcards/display.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lightcards/display.py b/lightcards/display.py index 2b4a51f..35a6539 100644 --- a/lightcards/display.py +++ b/lightcards/display.py @@ -477,8 +477,8 @@ class Display: ) self.win.hline(1, 0, curses.ACS_HLINE, mcols) - self.disp_bar() self.disp_sidebar() + self.disp_bar() def current_card(self): """Get current card object""" @@ -552,7 +552,7 @@ class Display: if i > mlines - 6: for i in range(19): - self.win.addch(mlines - 3, left + i, " ") + self.win.addch(mlines - 4, left + i, " ") self.win.addstr( mlines - 4, -- 2.39.2