From a56d2f195f616ff7244a9054e2990740e3f9f830 Mon Sep 17 00:00:00 2001 From: Adeel Kazmi Date: Tue, 19 Mar 2024 08:11:02 +0000 Subject: [PATCH] [Tizen] SVACE Fix: Initialise all members in SceneGraph::Animation Change-Id: I96c3d9e6606afd0dcab84053620fcadec64c685d --- dali/internal/update/animation/scene-graph-animation.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dali/internal/update/animation/scene-graph-animation.cpp b/dali/internal/update/animation/scene-graph-animation.cpp index ca17b73..6d576d6 100644 --- a/dali/internal/update/animation/scene-graph-animation.cpp +++ b/dali/internal/update/animation/scene-graph-animation.cpp @@ -86,7 +86,8 @@ Animation::Animation(float durationSeconds, float speedFactor, const Vector2& pl mAutoReverseEnabled(false), mAnimatorSortRequired(false), mIsActive{false, false}, - mIsFirstLoop{true} + mIsFirstLoop{true}, + mIsStopped{false} { } -- 2.7.4