Merge "Stop using string comparison against exported constant to check if string...
authorKimmo Hoikka <kimmo.hoikka@samsung.com>
Fri, 27 Feb 2015 13:49:51 +0000 (05:49 -0800)
committerGerrit Code Review <gerrit@review.vlan103.tizen.org>
Fri, 27 Feb 2015 13:49:51 +0000 (05:49 -0800)
dali-toolkit/internal/controls/popup/popup-impl.cpp

index 0cd53c9..441be04 100755 (executable)
@@ -350,7 +350,7 @@ void Popup::ShowTail(const Vector3& position)
   {
     Image tail = ResourceImage::New( image );
     mTailImage = ImageActor::New(tail);
-    const Vector3 anchorPoint = AnchorPoint::FRONT_BOTTOM_RIGHT - position;
+    const Vector3 anchorPoint = AnchorPoint::BOTTOM_RIGHT - position;
 
     mTailImage.SetParentOrigin(position);
     mTailImage.SetAnchorPoint(anchorPoint);