diff --git a/src/view/input/userInputView.lua b/src/view/input/userInputView.lua index 73cbbd83..a9375317 100644 --- a/src/view/input/userInputView.lua +++ b/src/view/input/userInputView.lua @@ -160,7 +160,10 @@ function UserInputView:render_input(input, status, time) for l, s in ipairs(visible) do local ln = l + vc.offset local tl = string.ulen(s) - if not tl then return end + if not tl then + gfx.pop() + return + end for c = 1, tl do local char = string.usub(s, c, c)