statusbar: disable focus for resize slider bar

Summary: disable focus for resize slider bar

Test Plan:
1. launch enventor
2. show resize ctxpopup using status bar
3. check the focus is disable

Reviewers: Hermet, Jaehyun_Cho, NikaWhite, bowonryu

Differential Revision: https://phab.enlightenment.org/D4232
This commit is contained in:
Taehyub Kim 2016-08-17 22:30:39 +09:00 committed by Hermet Park
parent 7e1a4c00a7
commit 6dbe2bc4e6
1 changed files with 1 additions and 0 deletions

View File

@ -144,6 +144,7 @@ view_resize_slider_layout_create(Evas_Object *parent, const char *type,
//Slider
Evas_Object *slider = elm_slider_add(layout);
elm_object_focus_allow_set(slider, EINA_FALSE);
elm_slider_span_size_set(slider, 120);
elm_slider_indicator_show_set(slider, EINA_FALSE);
double step = 1 / (double) (3840 - 1);