diff options
Diffstat (limited to 'test/functional/ui/screen.lua')
-rw-r--r-- | test/functional/ui/screen.lua | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/functional/ui/screen.lua b/test/functional/ui/screen.lua index 02841c98a0..71703cc112 100644 --- a/test/functional/ui/screen.lua +++ b/test/functional/ui/screen.lua @@ -114,7 +114,7 @@ Screen.__index = Screen local debug_screen -local default_screen_timeout = 2500 +local default_screen_timeout = 3500 if os.getenv('VALGRIND') then default_screen_timeout = default_screen_timeout * 3 end @@ -257,6 +257,8 @@ function Screen:_handle_resize(width, height) end table.insert(rows, cols) end + self._cursor.row = 1 + self._cursor.col = 1 self._rows = rows self._width = width self._height = height |