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:
parent
9b773e6909
commit
6d6c38a82a
1 changed files with 2 additions and 0 deletions
|
@ -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):
|
||||
"""
|
||||
|
|
Loading…
Reference in a new issue