[TSAM-12279] Show scanning popup when wifi is activating 51/107851/1
authorSeonah Moon <seonah1.moon@samsung.com>
Fri, 30 Dec 2016 06:45:49 +0000 (15:45 +0900)
committerSeonah Moon <seonah1.moon@samsung.com>
Fri, 30 Dec 2016 07:12:08 +0000 (16:12 +0900)
Change-Id: I405b67485df8f2c6a48176f112720d9d59993439
Signed-off-by: Seonah Moon <seonah1.moon@samsung.com>
packaging/wifi-efl-ug.spec
sources/wearable/src/wearable-circle/app_main.c

index c123b7c..fb8473a 100644 (file)
@@ -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
index 20e36e0..899c310 100755 (executable)
@@ -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);
        }
 }