Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion src/view/input/userInputView.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
Loading