From 5f2f1089086ad64636efc2a4096e55e4483c927a Mon Sep 17 00:00:00 2001 From: DualMatrix Date: Sat, 29 Sep 2018 16:28:17 +0200 Subject: Fixed animation_player not advancing to the next frame when inserting a value. Fixed animation_player not advancing to the next frame when inserting a value. --- editor/editor_inspector.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'editor/editor_inspector.cpp') diff --git a/editor/editor_inspector.cpp b/editor/editor_inspector.cpp index 49d9dca701..5873db6758 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) { -- cgit v1.2.3