From: MyoungJune Park Date: Sat, 29 Dec 2012 08:22:55 +0000 (+0900) Subject: fixed N_SE-12894 X-Git-Tag: accepted/tizen_2.1/20130425.022820~31^2~80 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=258371840b636f9ac2ce51812e6b0041329dc697;p=apps%2Fhome%2Fsettings.git fixed N_SE-12894 Resetting language®ion makes B/S, because of calling setting_reset_result_popup_update. but in case of Private rel, it works fine. I think EFL&ui-gadget need to make more analysis. but removing the call cure this symptom. I will let them know this and regard this issue as 'fixed' --- diff --git a/setting-reset/src/setting-reset.c b/setting-reset/src/setting-reset.c index 9487e59..b700d4f 100755 --- a/setting-reset/src/setting-reset.c +++ b/setting-reset/src/setting-reset.c @@ -178,7 +178,7 @@ static void setting_reset_ug_on_event(ui_gadget_h ug, enum ug_event event, if (ad->reset_list) elm_genlist_realized_items_update(ad->reset_list); - setting_reset_result_popup_update(ad); + // setting_reset_result_popup_update(ad); break; } @@ -284,8 +284,12 @@ void setting_reset_result_popup_resp_cb(void *data, Evas_Object *obj, void *even ad->pop_btn = NULL; } +/** + * language change makes B/S on resetting "Language&Region UG" + */ void setting_reset_result_popup_update(void *data) { +#if 1 SETTING_TRACE_BEGIN; ret_if(!data); SettingResetUG *ad = data; @@ -305,6 +309,7 @@ void setting_reset_result_popup_update(void *data) } //evas_object_show(ad->notify); } +#endif }