Fix editing after undo not clearing the change id (#1574)
This commit is contained in:
parent
9301220d26
commit
de043f2e13
|
@ -488,6 +488,10 @@ end
|
|||
|
||||
function Doc:insert(line, col, text)
|
||||
self.redo_stack = { idx = 1 }
|
||||
-- Reset the clean id when we're pushing something new before it
|
||||
if self:get_change_id() < self.clean_change_id then
|
||||
self.clean_change_id = -1
|
||||
end
|
||||
line, col = self:sanitize_position(line, col)
|
||||
self:raw_insert(line, col, text, self.undo_stack, system.get_time())
|
||||
self:on_text_change("insert")
|
||||
|
|
Loading…
Reference in New Issue