From: Kalle Wallin Date: Thu, 22 Apr 2004 20:28:42 +0000 (+0000) Subject: Fix that keeps the cursor hidden on aterm/Eterm when the terminal is resized. X-Git-Tag: v0.12_alpha1~565 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=4314bb955b36d2801340b5b4859a7d4c93794cde;p=ncmpc.git 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 --- 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; }