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

@ -80,7 +80,7 @@ void PythonSyntax::IndentInsert(CodeEditor& editor, int chr, int count)
}
}
if(count > 0)
editor.InsertChar(chr, count);
editor.InsertChar(chr, count, true);
}
bool PythonSyntax::LineHasColon(const WString& line)