rimmed pushed a commit to branch master. http://git.enlightenment.org/tools/eflete.git/commit/?id=c67054bbb8c912256bdac3177e1b64f91d34e81b
commit c67054bbb8c912256bdac3177e1b64f91d34e81b Author: Mykyta Biliavskyi <[email protected]> Date: Wed Aug 31 17:48:20 2016 +0300 Popup: apply serch icon for tizen theme. --- src/bin/ui/popup.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/bin/ui/popup.c b/src/bin/ui/popup.c index 0c413b7..0f10492 100644 --- a/src/bin/ui/popup.c +++ b/src/bin/ui/popup.c @@ -849,8 +849,13 @@ popup_gengrid_image_helper(const char *title, Evas_Object *follow_up, ENTRY_ADD(fs, entry, true); elm_object_part_text_set(entry, "guide", _("Search")); +#if !HAVE_TIZEN ICON_STANDARD_ADD(entry, icon, true, "search"); elm_object_part_content_set(entry, "elm.swallow.end", icon); +#else + elm_object_style_set(entry, "search"); +#endif + elm_object_part_content_set(fs, "eflete.swallow.search_line", entry); evas_object_smart_callback_add(entry, "changed", _on_images_search_entry_changed_cb, helper_data); --
