[Tizen] Do not call NotifyObjects in case of finished animations
[platform/core/uifw/dali-core.git] / dali / internal / event / animation / animation-impl.cpp
index 0a05d70..f1f981f 100644 (file)
@@ -386,7 +386,7 @@ void Animation::Clear()
   DALI_ASSERT_DEBUG(mAnimation);
 
   // Only notify the objects with the current values if the end action is set to BAKE
-  if( mEndAction == EndAction::BAKE )
+  if(mEndAction == EndAction::BAKE && mState != Dali::Animation::STOPPED)
   {
     NotifyObjects( Notify::USE_CURRENT_VALUE );
   }