Clear the space where the menu resides
(stdscr, menu_y)
| 142 | |
| 143 | |
| 144 | def erase_menu(stdscr, menu_y): |
| 145 | "Clear the space where the menu resides" |
| 146 | stdscr.move(menu_y, 0) |
| 147 | stdscr.clrtoeol() |
| 148 | stdscr.move(menu_y + 1, 0) |
| 149 | stdscr.clrtoeol() |
| 150 | |
| 151 | |
| 152 | def display_menu(stdscr, menu_y): |
no test coverage detected