diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2018-09-30 22:16:26 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-30 22:16:26 +0200 |
commit | c459fad43cb5793d16c79789dc3fc1f896d1c4d5 (patch) | |
tree | 6afff377ad1c229b06e1a8178baeefafb9cecf78 /editor/editor_inspector.cpp | |
parent | 4b015abfd4821ffa82ca7d170f8619794aee0ab8 (diff) | |
parent | 5f2f1089086ad64636efc2a4096e55e4483c927a (diff) |
Merge pull request #22536 from DualMatrix/no_advance
Fixed animation_player not advancing to the next frame when inserting a value.
Diffstat (limited to 'editor/editor_inspector.cpp')
-rw-r--r-- | editor/editor_inspector.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor_inspector.cpp b/editor/editor_inspector.cpp index bf177c2c62..2c4168f1a0 100644 --- a/editor/editor_inspector.cpp +++ b/editor/editor_inspector.cpp @@ -1981,7 +1981,7 @@ void EditorInspector::_property_keyed(const String &p_path) { if (!object) return; - emit_signal("property_keyed", p_path, object->get(p_path), false); //second param is deprecated + emit_signal("property_keyed", p_path, object->get(p_path), true); //second param is deprecated } void EditorInspector::_property_keyed_with_value(const String &p_path, const Variant &p_value) { |