Do not enable the cursor during full screen redraw

(and restore it afterwards)
Could take care of some refresh issues with the position of the cursor
This commit is contained in:
mathieui 2015-02-09 13:01:47 +01:00
parent 9b773e6909
commit 6d6c38a82a
No known key found for this signature in database
GPG key ID: C59F84CEEFD616E3

View file

@ -1437,9 +1437,11 @@ class Core(object):
"""
Refresh everything
"""
nocursor = curses.curs_set(0)
self.current_tab().state = 'current'
self.current_tab().refresh()
self.doupdate()
curses.curs_set(nocursor)
def refresh_tab_win(self):
"""