Merge pull request #18743 from Zouch/master

Consider TextEdit paste operation complex.
This commit is contained in:
Max Hilbrunner 2018-05-09 17:00:14 +02:00 committed by GitHub
commit 36787621f9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -4236,6 +4236,7 @@ void TextEdit::paste() {
String clipboard = OS::get_singleton()->get_clipboard();
begin_complex_operation();
if (selection.active) {
selection.active = false;
@ -4252,6 +4253,8 @@ void TextEdit::paste() {
}
_insert_text_at_cursor(clipboard);
end_complex_operation();
update();
}