diff options
author | Kalle Wallin <kaw@linux.se> | 2004-04-22 20:28:42 +0000 |
---|---|---|
committer | Kalle Wallin <kaw@linux.se> | 2004-04-22 20:28:42 +0000 |
commit | 4314bb955b36d2801340b5b4859a7d4c93794cde (patch) | |
tree | e5d28b626cd6cd465606c386e9c6baa69e3cfdda /screen.c | |
parent | b1f77e2684e85fac5ef5d50fc1342d7d53e5a492 (diff) | |
download | mpd-4314bb955b36d2801340b5b4859a7d4c93794cde.tar.gz mpd-4314bb955b36d2801340b5b4859a7d4c93794cde.tar.xz mpd-4314bb955b36d2801340b5b4859a7d4c93794cde.zip |
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
Diffstat (limited to '')
-rw-r--r-- | screen.c | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -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; } |