elm/orient: Align (0.5, 0.0) is TOP, not TOP_LEFT.
authorRafael Antognolli <antognolli@gmail.com>
Wed, 31 Oct 2012 12:37:55 +0000 (12:37 +0000)
committerRafael Antognolli <antognolli@gmail.com>
Wed, 31 Oct 2012 12:37:55 +0000 (12:37 +0000)
SVN revision: 78706

src/lib/elm_notify.c

index b94c987..71b2628 100644 (file)
@@ -606,7 +606,7 @@ elm_notify_orient_get(const Evas_Object *obj)
    elm_notify_align_get(obj, &horizontal, &vertical);
 
    if ((horizontal == 0.5) && (vertical == 0.0))
-     orient = ELM_NOTIFY_ORIENT_TOP_LEFT;
+     orient = ELM_NOTIFY_ORIENT_TOP;
    else if ((horizontal == 0.5) && (vertical == 0.5))
      orient = ELM_NOTIFY_ORIENT_CENTER;
    else if ((horizontal == 0.5) && (vertical == 1.0))