summaryrefslogtreecommitdiff
path: root/scene/resources
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <remi@verschelde.fr>2022-01-05 10:53:34 +0100
committerGitHub <noreply@github.com>2022-01-05 10:53:34 +0100
commitd27f06a61b3cea103f0abe074a62cc597117b316 (patch)
treeba3ea4729184c6658f46de92b9737b864f722f7f /scene/resources
parente976cd0b295c4f76d52d3bf07747df8a6750cb71 (diff)
parent51db86d7895db95c1be2562b0a48dc75b520c77d (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.cpp1
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 {