fix scrollok after resize
This commit is contained in:
parent
5c6ac47ef0
commit
4a583ee2ae
1 changed files with 2 additions and 0 deletions
|
@ -152,6 +152,8 @@ class TextWin(object):
|
||||||
def resize(self, height, width, y, x, stdscr):
|
def resize(self, height, width, y, x, stdscr):
|
||||||
for winname in self.wins.keys():
|
for winname in self.wins.keys():
|
||||||
self.wins[winname]._resize(height, width, y, x, stdscr)
|
self.wins[winname]._resize(height, width, y, x, stdscr)
|
||||||
|
self.wins[winname].win.idlok(True)
|
||||||
|
self.wins[winname].win.scrollok(True)
|
||||||
|
|
||||||
class Input(Win):
|
class Input(Win):
|
||||||
"""
|
"""
|
||||||
|
|
Loading…
Reference in a new issue