elm/orient: Align (0.5, 0.0) is TOP, not TOP_LEFT.

SVN revision: 78706
This commit is contained in:
Rafael Antognolli 2012-10-31 12:37:55 +00:00
parent b7bb82b1e7
commit 94cb2b2878
1 changed files with 1 additions and 1 deletions

View 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))