Commit 0a18d891 authored by Benno Schulenberg's avatar Benno Schulenberg
Browse files

screen: defeat a VTE bug by doing an extra cursor move and update

This fixes https://savannah.gnu.org/bugs/?49106.
No related merge requests found
Showing with 4 additions and 0 deletions
+4 -0
......@@ -2180,7 +2180,11 @@ void bottombars(int menu)
i++;
}
/* Defeat a VTE bug by moving the cursor and forcing a screen update. */
wmove(bottomwin, 0, 0);
wnoutrefresh(bottomwin);
doupdate();
reset_cursor();
wnoutrefresh(edit);
}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment