diff options
| -rw-r--r-- | src/utils.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/utils.c b/src/utils.c index 9137e21..20f95b7 100644 --- a/src/utils.c +++ b/src/utils.c @@ -14,6 +14,9 @@ get_input(const char *prompt, char *buf) int i = 0; curs_set(1); + werase(status_window->win); + mvwprintw(status_window->win, 0, 0, "%s", prompt); + wrefresh(status_window->win); while ((ch = getch())) { werase(status_window->win); |
