ami pushed a commit to branch master.

http://git.enlightenment.org/core/elementary.git/commit/?id=2f70b4f5e5e299e66df2f69dbd030efe5ad3edbf

commit 2f70b4f5e5e299e66df2f69dbd030efe5ad3edbf
Author: Amitesh Singh <amitesh...@samsung.com>
Date:   Sat Jul 18 14:58:25 2015 +0530

    popup: fix title icon to show up.
    
    Title icon of popup is not getting shown.
    steps to reproduce:
    1. elementary_test -to "popup"
    2. click "popup bottom title + text + 3 buttons"
    
    In the test popup example, the initial parent of icon is popup.
    The title_icon is reset to null while adjusting elm parent from popup
    to main_layout (elm_widget_sub_object_add which calls sub_object_del of 
popup)
    on swallowing icon to main_layout.
    
    Resolves: T2581
    @fix
---
 src/lib/elc_popup.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/src/lib/elc_popup.c b/src/lib/elc_popup.c
index 12331fd..e48ab0f 100644
--- a/src/lib/elc_popup.c
+++ b/src/lib/elc_popup.c
@@ -439,7 +439,6 @@ _elm_popup_elm_widget_sub_object_del(Eo *obj, 
Elm_Popup_Data *sd, Evas_Object *s
    if (sobj == sd->title_icon)
      {
         elm_layout_signal_emit(sd->main_layout, "elm,state,title,icon,hidden", 
"elm");
-        sd->title_icon = NULL;
      }
    else if ((it =
                evas_object_data_get(sobj, "_popup_icon_parent_item")) != NULL)

-- 


Reply via email to