From 87ed152c5afc9a6f2e6a0c3ae19bd18c26490163 Mon Sep 17 00:00:00 2001 From: Leon Styhre Date: Fri, 8 Sep 2023 20:14:22 +0200 Subject: [PATCH] Fixed a regression where text element fade animations would not play --- es-core/src/components/TextComponent.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/es-core/src/components/TextComponent.cpp b/es-core/src/components/TextComponent.cpp index b8fd52d74..8b74e55ce 100644 --- a/es-core/src/components/TextComponent.cpp +++ b/es-core/src/components/TextComponent.cpp @@ -421,6 +421,8 @@ void TextComponent::update(int deltaTime) mScrollOffset2 = 0; } } + + updateSelf(deltaTime); } void TextComponent::onTextChanged()