From: Armaan Bhojwani Date: Sun, 31 Jan 2021 16:21:58 +0000 (-0500) Subject: Add side number to footer X-Git-Tag: v0.3.0~12 X-Git-Url: https://git.armaanb.net/?p=lightcards.git;a=commitdiff_plain;h=61f54b207f23f28d5d2583685fc3f0b81a4db3a6 Add side number to footer --- 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):