diff options
author | zmike <michael.blumenkrantz@gmail.com> | 2014-03-30 23:19:00 -0400 |
---|---|---|
committer | zmike <michael.blumenkrantz@gmail.com> | 2014-03-30 23:20:04 -0400 |
commit | ea8d9c7241ebfa4398eabe039ec2fb9fec2b1f8b (patch) | |
tree | 3db6bfb81936c2b00420722033e117efa4fc6a4e | |
parent | b95a870dbf8c4806f529b6f0beb1a355a0b18950 (diff) |
genlist no longer randomly selects items (or scrolls to them after selecting)v1.10.0-tech-preview
this item focus thing is a giant bug nightmare and needed to be developed/tested much more thoroughly in a branch before being committed to master.
-rw-r--r-- | src/lib/elm_genlist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/elm_genlist.c b/src/lib/elm_genlist.c index 752aa750d..a872ed173 100644 --- a/src/lib/elm_genlist.c +++ b/src/lib/elm_genlist.c | |||
@@ -2919,7 +2919,7 @@ _elm_genlist_smart_on_focus(Eo *obj, void *_pd EINA_UNUSED, va_list *list) | |||
2919 | it = sd->last_focused_item; | 2919 | it = sd->last_focused_item; |
2920 | else if (sd->last_selected_item) | 2920 | else if (sd->last_selected_item) |
2921 | it = sd->last_selected_item; | 2921 | it = sd->last_selected_item; |
2922 | else | 2922 | else if (sd->selected) |
2923 | { | 2923 | { |
2924 | it = elm_genlist_first_item_get(obj); | 2924 | it = elm_genlist_first_item_get(obj); |
2925 | is_sel = EINA_TRUE; | 2925 | is_sel = EINA_TRUE; |