From 4314bb955b36d2801340b5b4859a7d4c93794cde Mon Sep 17 00:00:00 2001 From: Kalle Wallin Date: Thu, 22 Apr 2004 20:28:42 +0000 Subject: [PATCH] Fix that keeps the cursor hidden on aterm/Eterm when the terminal is resized. git-svn-id: https://svn.musicpd.org/ncmpc/trunk@874 09075e82-0dd4-0310-85a5-a0d7c8717e4f --- screen.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/screen.c b/screen.c index 5314621..0524b0d 100644 --- a/screen.c +++ b/screen.c @@ -375,7 +375,11 @@ screen_resize(void) list=list->next; } - + + /* ? - without this the cursor becomes visible with aterm & Eterm */ + curs_set(1); + curs_set(0); + screen->painted = 0; } -- 2.30.2