aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorThiago de Arruda <tpadilha84@gmail.com>2015-03-18 22:42:19 -0300
committerThiago de Arruda <tpadilha84@gmail.com>2015-03-18 22:42:19 -0300
commit608d709fa0878cbc4ff7386badc81fdfcc66234a (patch)
treefc861fa278e095a38d4b39bb9ac736321446b6da /test
parenta0f2961b4fc2beabf1266faef0f543afdffd45f8 (diff)
parent4d63d9917482a7d7a002bf7688233a675b76cd3e (diff)
downloadrneovim-608d709fa0878cbc4ff7386badc81fdfcc66234a.tar.gz
rneovim-608d709fa0878cbc4ff7386badc81fdfcc66234a.tar.bz2
rneovim-608d709fa0878cbc4ff7386badc81fdfcc66234a.zip
Merge PR #2182 'Improve ui/busy handling and early input reading'
Diffstat (limited to 'test')
-rw-r--r--test/functional/ui/screen.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/ui/screen.lua b/test/functional/ui/screen.lua
index 2cebaf048c..f79d634536 100644
--- a/test/functional/ui/screen.lua
+++ b/test/functional/ui/screen.lua
@@ -166,7 +166,7 @@ function Screen.new(width, height)
_cursor = {
row = 1, col = 1
},
- _busy = true
+ _busy = false
}, Screen)
self:_handle_resize(width, height)
return self