Simplify the help line at the bottom of the screen

This commit is contained in:
markmental 2026-03-18 21:25:15 -04:00
commit 313e29f053

View file

@ -1107,7 +1107,7 @@ def draw_help(stdscr, max_y: int) -> None:
y = max_y - 1
stdscr.move(y, 0)
stdscr.clrtoeol()
help_text = "Move: arrows/hjkl v: visual y/p: pick/drop ?: hint Enter/Space: pick/drop f: freecell d: foundation Esc: cancel q: quit"
help_text = "Move arrows/hjkl v select y/p/ENT/SPC move ? hint f freecell d foundation Esc cancel q quit"
stdscr.addnstr(y, 2, help_text, max(0, curses.COLS - 4), curses.color_pair(1))