[TSAM-8835/9061] Fixed some issues 19/92719/2 accepted/tizen/3.0/ivi/20161028.123015 accepted/tizen/3.0/mobile/20161028.122327 accepted/tizen/3.0/tv/20161028.122606 accepted/tizen/common/20161019.145725 accepted/tizen/ivi/20161021.062433 accepted/tizen/mobile/20161021.062328 accepted/tizen/tv/20161021.062346 submit/tizen/20161019.063605 submit/tizen_3.0/20161028.062323 submit/tizen_3.0/20161028.062331 submit/tizen_3.0/20161028.082323 submit/tizen_3.0_common/20161104.104000
authorSeonah Moon <seonah1.moon@samsung.com>
Tue, 18 Oct 2016 09:22:36 +0000 (18:22 +0900)
committerSeonah Moon <seonah1.moon@samsung.com>
Tue, 18 Oct 2016 10:09:56 +0000 (19:09 +0900)
- Don't disable save button when security type is changed
- Change the app id for launching network application

Change-Id: Iac3c48b60d8d3e2de5e570226c0534f3d7e12f16
Signed-off-by: Seonah Moon <seonah1.moon@samsung.com>
packaging/ug-setting-mobileap-efl.spec
src/mh_popup.c
src/mh_view_wifi_setup.c

index 59ec419..a39920f 100755 (executable)
@@ -3,7 +3,7 @@
 
 Name:          ug-setting-mobileap-efl
 Summary:       Tethering UI Gadget Library
-Version:       1.0.147
+Version:       1.0.148
 Release:       1
 Group:         App/Network
 License:       Flora-1.1
index 7136606..e24c25a 100755 (executable)
@@ -30,6 +30,7 @@
 
 #define MAX_BUF_SIZE   (256u)
 #define NETPOPUP               "net.netpopup"
+#define NETWORK_SETTING_APP    "org.tizen.setting-network"
 
 static mh_popup_type_e popup_type = MH_POPUP_NONE;
 static Evas_Object *popup_content = NULL;
@@ -47,7 +48,7 @@ static void __launch_network_app(void)
        }
        app_control_set_operation(app_control, APP_CONTROL_OPERATION_DEFAULT);
        app_control_set_launch_mode(app_control, APP_CONTROL_LAUNCH_MODE_GROUP);
-       app_control_set_app_id(app_control, "setting-network-efl");
+       app_control_set_app_id(app_control, NETWORK_SETTING_APP);
 
        ret = app_control_send_launch_request(app_control, NULL, NULL);
        if (ret == APP_CONTROL_ERROR_NONE)
index 43a21f2..f766110 100755 (executable)
@@ -87,9 +87,6 @@ static void __security_btn_changed_cb(void *data, Evas_Object *obj, void *event_
                elm_object_disabled_set(st->save_button, EINA_FALSE);
        } else {
                elm_object_item_disabled_set(st->pw_item, EINA_FALSE);
-               if (st->pw_entry == NULL || elm_entry_entry_get(st->pw_entry) == NULL ||
-                   strlen(elm_entry_entry_get(st->pw_entry)) == 0)
-                       elm_object_disabled_set(st->save_button, EINA_TRUE);
        }
 
        if (st->pw_item)