diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-01-05 10:53:34 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-05 10:53:34 +0100 |
commit | d27f06a61b3cea103f0abe074a62cc597117b316 (patch) | |
tree | ba3ea4729184c6658f46de92b9737b864f722f7f /scene/resources | |
parent | e976cd0b295c4f76d52d3bf07747df8a6750cb71 (diff) | |
parent | 51db86d7895db95c1be2562b0a48dc75b520c77d (diff) |
Merge pull request #56193 from kodiwills/fix-update-mode-not-refreshed-visually-on-undo
Diffstat (limited to 'scene/resources')
-rw-r--r-- | scene/resources/animation.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scene/resources/animation.cpp b/scene/resources/animation.cpp index ed956d1ab0..44d3e4af19 100644 --- a/scene/resources/animation.cpp +++ b/scene/resources/animation.cpp @@ -2715,6 +2715,7 @@ void Animation::value_track_set_update_mode(int p_track, UpdateMode p_mode) { ValueTrack *vt = static_cast<ValueTrack *>(t); vt->update_mode = p_mode; + emit_changed(); } Animation::UpdateMode Animation::value_track_get_update_mode(int p_track) const { |