jaehyun pushed a commit to branch master. http://git.enlightenment.org/tools/enventor.git/commit/?id=2d2bb9e3a5a66e747b729f9a09319f143f18d820
commit 2d2bb9e3a5a66e747b729f9a09319f143f18d820 Author: Jaehyun Cho <jae_hyun....@samsung.com> Date: Wed May 25 23:44:23 2016 +0900 text_setting: Show current font name. Previously, current font name was not visible because scroller of font name did not move to the current font name list item. Now, current font name is visible. --- src/bin/text_setting.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/bin/text_setting.c b/src/bin/text_setting.c index 6678491..87a1412 100644 --- a/src/bin/text_setting.c +++ b/src/bin/text_setting.c @@ -915,7 +915,11 @@ text_setting_content_get(text_setting_data *tsd, Evas_Object *parent) } } elm_list_go(list_font_name); - if (font_name_it) elm_list_item_selected_set(font_name_it, EINA_TRUE); + if (font_name_it) + { + elm_list_item_selected_set(font_name_it, EINA_TRUE); + elm_list_item_show(font_name_it); + } tsd->layout = layout; tsd->text_edit_entry = entry; --