1 2 3 4 5 6 7 8 9 10 11 12 13
|
elm_notify_orient_set was dropped from the API, replace with
elm_notify_align_set, as seen in the eflete tree.
--- a/src/util/ui-utils.c
+++ b/src/util/ui-utils.c
@@ -572,7 +572,7 @@ ui_utils_notify(Evas_Object *parent, con
Evas_Object *notify, *bx, *bt, *lb;
notify = elm_notify_add(parent);
evas_object_size_hint_weight_set(notify, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
- elm_notify_orient_set(notify, ELM_NOTIFY_ORIENT_CENTER);
+ elm_notify_align_set(notify, 0.5, 0.5);
elm_notify_timeout_set(notify, timeout);
bx = elm_box_add(parent);
|