From 884cde5dc825574b0ac06d4b5b65f967b85e6d2f Mon Sep 17 00:00:00 2001 From: Seonah Moon Date: Fri, 30 Dec 2016 15:45:49 +0900 Subject: [PATCH] [TSAM-12279] Show scanning popup when wifi is activating Change-Id: I405b67485df8f2c6a48176f112720d9d59993439 Signed-off-by: Seonah Moon --- packaging/wifi-efl-ug.spec | 2 +- sources/wearable/src/wearable-circle/app_main.c | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/packaging/wifi-efl-ug.spec b/packaging/wifi-efl-ug.spec index c123b7c..fb8473a 100644 --- a/packaging/wifi-efl-ug.spec +++ b/packaging/wifi-efl-ug.spec @@ -1,6 +1,6 @@ Name: wifi-efl-ug Summary: Wi-Fi UI Gadget for TIZEN -Version: 1.0.226 +Version: 1.0.227 Release: 1 Group: Applications/Network License: Flora-1.1 diff --git a/sources/wearable/src/wearable-circle/app_main.c b/sources/wearable/src/wearable-circle/app_main.c index 20e36e0..899c310 100755 --- a/sources/wearable/src/wearable-circle/app_main.c +++ b/sources/wearable/src/wearable-circle/app_main.c @@ -3996,13 +3996,14 @@ static void __main_menu_power_tap_cb(void *data, Evas_Object *obj, void *event_i wifi_manager_set_wifi_use(app_obj->wifi_manager, TRUE); WIFI_LOG_INFO("After active setting"); - /* Seonah Moon: For activating wifi */ err = wifi_manager_activate(app_obj->wifi_manager, NULL, NULL); if (err != WIFI_ERROR_NONE) { WIFI_LOG_ERR("wifi_manager_activate() is failed. error = %s", wifi_error_to_string(err)); return; } + + _popup_scanning_show(app_obj, TRUE); } } -- 2.7.4