diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2022-12-12 23:47:59 -0800 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2022-12-12 23:47:59 -0800 |
commit | 1d27d595337ee663ab29a970ea1b6013bbdbbb97 (patch) | |
tree | 962b8b9a083fb3ef595bb2476e4e7d714134b551 /source_edit.lua | |
parent | d63178244bfff87f0b6e17f0a67305fe684193ae (diff) | |
download | text.love-1d27d595337ee663ab29a970ea1b6013bbdbbb97.tar.gz |
repeat bugfix on source editor X-(
Diffstat (limited to 'source_edit.lua')
-rw-r--r-- | source_edit.lua | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/source_edit.lua b/source_edit.lua index 242aca5..8c1b37d 100644 --- a/source_edit.lua +++ b/source_edit.lua @@ -299,8 +299,11 @@ function edit.textinput(State, t) p.name = p.name..t record_undo_event(State, {before=before, after=snapshot(State, State.lines.current_drawing_index)}) else - for _,line_cache in ipairs(State.line_cache) do line_cache.starty = nil end -- just in case we scroll - Text.textinput(State, t) + local drawing_index, drawing = Drawing.current_drawing(State) + if drawing_index == nil then + for _,line_cache in ipairs(State.line_cache) do line_cache.starty = nil end -- just in case we scroll + Text.textinput(State, t) + end end schedule_save(State) end |