Fix SVACE issue
[platform/core/uifw/dali-core.git] / dali / internal / event / actors / actor-impl.cpp
index f7df4d4..a7be0fc 100644 (file)
@@ -5209,7 +5209,7 @@ void Actor::Lower()
     ActorContainer& siblings = *(mParent->mChildren);
     if( siblings.front() != this ) // If not already at beginning
     {
-      for( size_t i=0; i<siblings.size(); ++i )
+      for( size_t i=1; i<siblings.size(); ++i )
       {
         if( siblings[i] == this )
         {