File: libelementary2.patch

package info (click to toggle)
libphone-ui-shr 0.1%2Bgit20130901-3
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, stretch
  • size: 3,048 kB
  • ctags: 932
  • sloc: ansic: 9,449; makefile: 161; sh: 2
file content (13 lines) | stat: -rw-r--r-- 551 bytes parent folder | download
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);