From 61f54b207f23f28d5d2583685fc3f0b81a4db3a6 Mon Sep 17 00:00:00 2001 From: Armaan Bhojwani Date: Sun, 31 Jan 2021 11:21:58 -0500 Subject: [PATCH] Add side number to footer --- lightcards/display.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lightcards/display.py b/lightcards/display.py index f31952e..511dc1d 100755 --- a/lightcards/display.py +++ b/lightcards/display.py @@ -27,7 +27,9 @@ def disp_bar(stdscr, stack, headers, obj): ")]" + " [" + headers[obj.getSide()] + - "]", curses.color_pair(1)) + " (" + + str(obj.getSide() + 1) + + ")]", curses.color_pair(1)) def disp_menu(stdscr, stack, headers, idx): -- 2.39.2