Merge pull request #22536 from DualMatrix/no_advance
Fixed animation_player not advancing to the next frame when inserting a value.
This commit is contained in:
commit
c459fad43c
2 changed files with 2 additions and 2 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue