summaryrefslogtreecommitdiff
path: root/editor
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <rverschelde@gmail.com>2018-08-18 21:38:51 +0200
committerGitHub <noreply@github.com>2018-08-18 21:38:51 +0200
commitfcab86a71e50e44a5589e22cfbf50ea6eb97641a (patch)
tree6a50b28de47a86a58ab9549aeeced483d85d7b20 /editor
parentb4ce1e3005ed54f028b57bbf6908f60113afe80a (diff)
parent8ad251b331fdc6b7e02c7be7ba8a3eabcf479bbf (diff)
Merge pull request #21159 from DualMatrix/label_reverse
Fixed text entry is going in reverse
Diffstat (limited to 'editor')
-rw-r--r--editor/editor_properties.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/editor/editor_properties.cpp b/editor/editor_properties.cpp
index 0cbd5f0bff..68d1d689e0 100644
--- a/editor/editor_properties.cpp
+++ b/editor/editor_properties.cpp
@@ -61,7 +61,7 @@ void EditorPropertyText::_text_changed(const String &p_string) {
if (updating)
return;
- emit_signal("property_changed", get_edited_property(), p_string);
+ emit_signal("property_changed", get_edited_property(), p_string, true);
}
void EditorPropertyText::update_property() {
@@ -92,12 +92,11 @@ EditorPropertyText::EditorPropertyText() {
void EditorPropertyMultilineText::_big_text_changed() {
text->set_text(big_text->get_text());
- emit_signal("property_changed", get_edited_property(), big_text->get_text());
+ emit_signal("property_changed", get_edited_property(), big_text->get_text(), true);
}
void EditorPropertyMultilineText::_text_changed() {
-
- emit_signal("property_changed", get_edited_property(), text->get_text());
+ emit_signal("property_changed", get_edited_property(), text->get_text(), true);
}
void EditorPropertyMultilineText::_open_big_text() {