projects
/
platform
/
upstream
/
elementary.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1bc6dfb
)
gengrid: fix item looping in case of horizontal mode
author
Amitesh Singh
<amitesh.sh@samsung.com>
Fri, 28 Aug 2015 05:04:52 +0000
(10:34 +0530)
committer
Amitesh Singh
<amitesh.sh@samsung.com>
Fri, 28 Aug 2015 05:04:52 +0000
(10:34 +0530)
This mistake is done in
a8afaebf3109f1cb8e397e29
src/lib/elm_gengrid.c
patch
|
blob
|
history
diff --git
a/src/lib/elm_gengrid.c
b/src/lib/elm_gengrid.c
index 6fc0550cc956531b867cb60a20681f3e30fc82b3..acdd04d71ab764531959830889442671c3a6b861 100644
(file)
--- a/
src/lib/elm_gengrid.c
+++ b/
src/lib/elm_gengrid.c
@@
-3080,7
+3080,10
@@
_key_action_move(Evas_Object *obj, const char *params)
if (_elm_gengrid_item_edge_check(sd->focused_item, ELM_FOCUS_LEFT))
{
if (sd->item_loop_enable)
- return EINA_TRUE;
+ {
+ if (_item_horizontal_loop(obj, ELM_FOCUS_RIGHT))
+ return EINA_TRUE;
+ }
return EINA_FALSE;
}
if (!_elm_config->item_select_on_focus_disable)