diff options
author | InBum Chang <ibchang@samsung.com> | 2012-09-06 15:11:10 +0900 |
---|---|---|
committer | Gerrit Code Review <gerrit2@localhost> | 2012-09-06 15:11:10 +0900 |
commit | 446a5f44ca44f285ae814d98f82b56b622a60eb4 (patch) | |
tree | 69ccc932e692edf88c7ad21535a44e61900754f6 | |
parent | 657a1787bc0a980e27dcda00711922484def9877 (diff) | |
parent | f178ab2ac4c9b58fc4cd825a1b7f695d3ac7c481 (diff) | |
download | org.tizen.browser-446a5f44ca44f285ae814d98f82b56b622a60eb4.tar.gz org.tizen.browser-446a5f44ca44f285ae814d98f82b56b622a60eb4.tar.bz2 org.tizen.browser-446a5f44ca44f285ae814d98f82b56b622a60eb4.zip |
Merge "[Title] Set separator between list items." into 2.0_beta
-rwxr-xr-x | src/browser-bookmark/browser-add-to-bookmark-view.cpp | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/src/browser-bookmark/browser-add-to-bookmark-view.cpp b/src/browser-bookmark/browser-add-to-bookmark-view.cpp index 5d90fd3..af0da3c 100755 --- a/src/browser-bookmark/browser-add-to-bookmark-view.cpp +++ b/src/browser-bookmark/browser-add-to-bookmark-view.cpp @@ -231,6 +231,16 @@ Evas_Object *Browser_Add_To_Bookmark_View::_create_content_genlist(void) BROWSER_LOGE("elm_genlist_add failed"); return NULL; } + elm_object_style_set(genlist, "dialogue"); + + m_seperator_item_class.item_style = "dialogue/seperator.2"; + m_seperator_item_class.func.text_get = NULL; + m_seperator_item_class.func.del = NULL; + m_seperator_item_class.func.content_get = NULL; + m_seperator_item_class.func.state_get = NULL; + Elm_Object_Item *it = elm_genlist_item_append(genlist, &m_seperator_item_class, NULL, NULL, + ELM_GENLIST_ITEM_NONE, NULL, NULL); + elm_genlist_item_select_mode_set(it, ELM_OBJECT_SELECT_MODE_DISPLAY_ONLY); m_edit_field_item_class.item_style = "dialogue/1icon"; m_edit_field_item_class.func.text_get = NULL; @@ -243,12 +253,7 @@ Evas_Object *Browser_Add_To_Bookmark_View::_create_content_genlist(void) elm_genlist_item_append(genlist, &m_edit_field_item_class, &m_title_param, NULL, ELM_GENLIST_ITEM_NONE, NULL, NULL); - m_seperator_item_class.item_style = "dialogue/seperator"; - m_seperator_item_class.func.text_get = NULL; - m_seperator_item_class.func.del = NULL; - m_seperator_item_class.func.content_get = NULL; - m_seperator_item_class.func.state_get = NULL; - Elm_Object_Item *it = elm_genlist_item_append(genlist, &m_seperator_item_class, NULL, NULL, + it = elm_genlist_item_append(genlist, &m_seperator_item_class, NULL, NULL, ELM_GENLIST_ITEM_NONE, NULL, NULL); elm_genlist_item_select_mode_set(it, ELM_OBJECT_SELECT_MODE_DISPLAY_ONLY); |