diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2022-12-12 23:51:04 -0800 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2022-12-12 23:51:04 -0800 |
commit | c51ab8739296f9b5a72508045b0b3e4b1910006d (patch) | |
tree | 25306ed00d21deb2aae5447254746f5658464585 | |
parent | a472498633ccfe5f306e19afbac29a84de2696d0 (diff) | |
parent | 97fa2b0a7a397d94337fb6d514e0d2e0eb8022af (diff) | |
download | view.love-c51ab8739296f9b5a72508045b0b3e4b1910006d.tar.gz |
Merge text.love
-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 |