diff options
author | qarmin <mikrutrafal54@gmail.com> | 2019-02-16 10:48:23 +0100 |
---|---|---|
committer | qarmin <mikrutrafal54@gmail.com> | 2019-02-16 10:48:23 +0100 |
commit | fa629cdd2cf3baf81c085acf2ff924d805f3d357 (patch) | |
tree | 453912c80361311b0f7c7bd7705b2d1aa05ea0c0 | |
parent | f5477ee36f2d34a5d6db0ee3e1516e9c12be28d5 (diff) |
Fix big text window in TextEdit
-rw-r--r-- | editor/editor_properties.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor_properties.cpp b/editor/editor_properties.cpp index 56bab440c9..614edda58c 100644 --- a/editor/editor_properties.cpp +++ b/editor/editor_properties.cpp @@ -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() { |