diff --git a/linux-freecell.py b/linux-freecell.py index 5777487..85e6fd6 100644 --- a/linux-freecell.py +++ b/linux-freecell.py @@ -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))