diff options
author | taesub kim <taesub.kim@samsung.com> | 2018-06-28 10:17:09 +0900 |
---|---|---|
committer | taesub kim <taesub.kim@samsung.com> | 2018-06-28 10:19:11 +0900 |
commit | ef6dcd7146b9b501c85d4cfbf0ee5bf1d83895f9 (patch) | |
tree | 0275623cb750f3c71df212f6475a6bd76d900f0c | |
parent | ab1b22e4479ef6e6f5442aa6089a16390a432722 (diff) | |
download | wifi-ef6dcd7146b9b501c85d4cfbf0ee5bf1d83895f9.tar.gz wifi-ef6dcd7146b9b501c85d4cfbf0ee5bf1d83895f9.tar.bz2 wifi-ef6dcd7146b9b501c85d4cfbf0ee5bf1d83895f9.zip |
Modified the deprecated enumsubmit/tizen/20180702.034741accepted/tizen/unified/20180702.151340
http://mosaic.sec.samsung.net/kms/comty.do?comtyId=2305148&menuId=2305189&postId=2307555&page=view&type=LIST
Brief description and purpose
â—¾Add new 4 notification window levels like below.
EFL_UTIL_NOTIFICATION_LEVEL_DEFAULT
EFL_UTIL_NOTIFICATION_LEVEL_MEDIUM
EFL_UTIL_NOTIFICATION_LEVEL_HIGH
EFL_UTIL_NOTIFICATION_LEVEL_TOP
â—¾Deprecation 3 notification window levels like below
EFL_UTIL_NOTIFICATION_LEVEL_1
EFL_UTIL_NOTIFICATION_LEVEL_2
EFL_UTIL_NOTIFICATION_LEVEL_3
Change-Id: I365ad92730d357e267c45ac7abbb99921e5195cc
Signed-off-by: Taesub Kim <taesub.kim@samsung.com>
-rwxr-xr-x | sources/wearable/src/wearable-circle/view/base.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sources/wearable/src/wearable-circle/view/base.c b/sources/wearable/src/wearable-circle/view/base.c index 020b59a..9dc6d24 100755 --- a/sources/wearable/src/wearable-circle/view/base.c +++ b/sources/wearable/src/wearable-circle/view/base.c @@ -53,7 +53,7 @@ static Evas_Object *_create_window(const gchar *name) (const int *)(&rots), 4); } - efl_util_set_notification_window_level(window, EFL_UTIL_NOTIFICATION_LEVEL_1); + efl_util_set_notification_window_level(window, EFL_UTIL_NOTIFICATION_LEVEL_DEFAULT); return window; } |