diff --git a/src/winio.c b/src/winio.c index 0a8700f96e53185fba2694e11d12ff9ca948a2f1..37d752f414bec955a884ba815cb38d384e4d30a5 100644 --- a/src/winio.c +++ b/src/winio.c @@ -2162,6 +2162,10 @@ void statusline(message_type importance, const char *msg, ...) waddstr(bottomwin, " ]"); wattroff(bottomwin, interface_color_pair[STATUS_BAR]); + /* Defeat a VTE/Konsole bug, where the cursor can go off-limits. */ + if (ISSET(CONSTANT_SHOW) && ISSET(NO_HELP)) + wmove(bottomwin, 0, 0); + /* Push the message to the screen straightaway. */ wrefresh(bottomwin);