mirror of
https://github.com/godotengine/godot.git
synced 2024-11-21 03:18:37 +08:00
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.
This commit is contained in:
parent
d4df4c1475
commit
5f2f108908
@ -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) {
|
||||
|
@ -1761,7 +1761,7 @@ void EditorPropertyColor::_color_changed(const Color &p_color) {
|
||||
|
||||
void EditorPropertyColor::_popup_closed() {
|
||||
|
||||
emit_signal("property_changed", get_edited_property(), picker->get_pick_color(), false);
|
||||
emit_signal("property_changed", get_edited_property(), picker->get_pick_color(), true);
|
||||
}
|
||||
|
||||
void EditorPropertyColor::_bind_methods() {
|
||||
|
Loading…
Reference in New Issue
Block a user