Merge pull request #25932 from qarmin/fix_text_edit_issue

Fix big text window in TextEdit
This commit is contained in:
Rémi Verschelde 2019-02-16 14:19:47 +01:00 committed by GitHub
commit 8c27673dc0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -115,8 +115,8 @@ void EditorPropertyMultilineText::_open_big_text() {
add_child(big_text_dialog);
}
big_text->set_text(text->get_text());
big_text_dialog->popup_centered_ratio();
big_text->set_text(text->get_text());
}
void EditorPropertyMultilineText::update_property() {