From: Seonah Moon Date: Tue, 18 Oct 2016 09:22:36 +0000 (+0900) Subject: [TSAM-8835/9061] Fixed some issues X-Git-Tag: accepted/tizen/3.0/ivi/20161028.123015^0 X-Git-Url: http://review.tizen.org/git/?p=apps%2Fnative%2Fug-mobile-ap.git;a=commitdiff_plain;h=3e3613f29fdfc1804097c0df5a5fb09ac0a43a25 [TSAM-8835/9061] Fixed some issues - 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 --- diff --git a/packaging/ug-setting-mobileap-efl.spec b/packaging/ug-setting-mobileap-efl.spec index 59ec419..a39920f 100755 --- a/packaging/ug-setting-mobileap-efl.spec +++ b/packaging/ug-setting-mobileap-efl.spec @@ -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 diff --git a/src/mh_popup.c b/src/mh_popup.c index 7136606..e24c25a 100755 --- a/src/mh_popup.c +++ b/src/mh_popup.c @@ -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) diff --git a/src/mh_view_wifi_setup.c b/src/mh_view_wifi_setup.c index 43a21f2..f766110 100755 --- a/src/mh_view_wifi_setup.c +++ b/src/mh_view_wifi_setup.c @@ -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)