ami pushed a commit to branch master.

http://git.enlightenment.org/core/elementary.git/commit/?id=1087d34a1a8aaadc8cb131100c34300b08ecf9aa

commit 1087d34a1a8aaadc8cb131100c34300b08ecf9aa
Author: Amitesh Singh <amitesh...@samsung.com>
Date:   Thu Jul 30 16:10:47 2015 +0530

    hoversel: use elm_object_focus_set to set focus on subobjects.
    
    We should steal the focus while setting focus to subobjects from parent.
    This issue is reproducable in case of setting focus on one of items of 
hoversel
    on expanded cb of hoversel.
    
    @fix
---
 src/lib/elc_hoversel.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/lib/elc_hoversel.c b/src/lib/elc_hoversel.c
index 393be05..d49dce2 100644
--- a/src/lib/elc_hoversel.c
+++ b/src/lib/elc_hoversel.c
@@ -284,7 +284,7 @@ _elm_hoversel_item_elm_widget_item_focus_set(Eo *eo_it 
EINA_UNUSED,
                                              Elm_Hoversel_Item_Data *it,
                                              Eina_Bool focused)
 {
-   elm_widget_focus_set(VIEW(it), focused);
+   elm_object_focus_set(VIEW(it), focused);
 }
 
 EOLIAN static Eina_Bool

-- 


Reply via email to