From: Woochan Lee Date: Fri, 24 Apr 2015 07:22:07 +0000 (+0900) Subject: test_naviframe_complex.c: naviframe prev button auto pushed set as false. X-Git-Tag: v1.14.0-beta3~6 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ab83df3467817a87c29bc077f0a41bef15749161;p=platform%2Fupstream%2Felementary.git test_naviframe_complex.c: naviframe prev button auto pushed set as false. Summary: There is a invisible prev button. but it can get a focus and delete the current naviframe item. Its not intend to added here i think, so i add a function that not add prev button automatically. Test Plan: Run elementary_test -> Naviframe Complex Move focus use arrow key button and input enter key on prev button. Click the View list, check the ERR msgs. Reviewers: Jaehyun, Hermet Reviewed By: Hermet Differential Revision: https://phab.enlightenment.org/D2420 --- diff --git a/src/bin/test_naviframe_complex.c b/src/bin/test_naviframe_complex.c index 63678bc..63539c7 100644 --- a/src/bin/test_naviframe_complex.c +++ b/src/bin/test_naviframe_complex.c @@ -334,6 +334,7 @@ test_naviframe_complex(void *data EINA_UNUSED, Evas_Object *obj EINA_UNUSED, voi nf = elm_naviframe_add(win); evas_object_size_hint_weight_set(nf, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND); evas_object_size_hint_align_set(nf, EVAS_HINT_FILL, EVAS_HINT_FILL); + elm_naviframe_prev_btn_auto_pushed_set(nf, EINA_FALSE); elm_box_pack_end(box, nf); evas_object_show(nf);