ide: Editor overwrite mode fixes (#143)

This commit is contained in:
Peter Ped Helcmanovsky 2023-02-05 19:49:20 +01:00 committed by GitHub
parent e725dd2d69
commit 9b07a9e45a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 5 additions and 5 deletions

View file

@ -343,7 +343,7 @@ void CodeEditor::IndentInsert(int chr, int count) {
if(s)
s->IndentInsert(*this, chr, count);
else
InsertChar(chr, count);
InsertChar(chr, count, true);
}
void CodeEditor::Make(Event<String&> op)