mirror of
https://github.com/godotengine/godot.git
synced 2024-11-15 08:32:54 +00:00
AnimationPlayer: Prevent resetting timeline when pinned (#4497)
Fixes #1019
This commit is contained in:
parent
6883325f92
commit
0b4f277184
@ -616,6 +616,9 @@ void AnimationPlayerEditor::_blend_edited() {
|
||||
|
||||
void AnimationPlayerEditor::ensure_visibility() {
|
||||
|
||||
if (player && pin->is_pressed())
|
||||
return; // another player is pinned, don't reset
|
||||
|
||||
_animation_edit();
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user