config: revert first_item_focus_on_first_focus_in to 0

This fixes a behavioural change introduced in D1135.
Steps to reproduce:
1. elementary_test -> genlist/list/gengrid
2. scroll dragging the scroll-bar
3. an item nearest to viewport gets selected when you release the mouse button

Most of the time, we don't want item to be selected or focused on dragging
scroll-bar via mouse. Revert config flag to 0 to have old behaviour before D1135.

fixes: T2662
@fix
This commit is contained in:
Amitesh Singh 2015-08-27 10:00:39 +05:30
parent 0a6e5c64d6
commit 363cd95497
3 changed files with 3 additions and 3 deletions

View File

@ -48,7 +48,7 @@ group "Elm_Config" struct {
value "focus_highlight_animate" uchar: 0;
value "focus_highlight_clip_disable" uchar: 0;
value "item_select_on_focus_disable" uchar: 0;
value "first_item_focus_on_first_focus_in" uchar: 1;
value "first_item_focus_on_first_focus_in" uchar: 0;
value "focus_move_policy" uchar: 0;
value "toolbar_shrink_mode" int: 3;
value "fileselector_expand_enable" uchar: 0;

View File

@ -48,7 +48,7 @@ group "Elm_Config" struct {
value "focus_highlight_animate" uchar: 0;
value "focus_highlight_clip_disable" uchar: 0;
value "item_select_on_focus_disable" uchar: 0;
value "first_item_focus_on_first_focus_in" uchar: 1;
value "first_item_focus_on_first_focus_in" uchar: 0;
value "focus_move_policy" uchar: 0;
value "toolbar_shrink_mode" int: 3;
value "fileselector_expand_enable" uchar: 0;

View File

@ -48,7 +48,7 @@ group "Elm_Config" struct {
value "focus_highlight_animate" uchar: 0;
value "focus_highlight_clip_disable" uchar: 1;
value "item_select_on_focus_disable" uchar: 0;
value "first_item_focus_on_first_focus_in" uchar: 1;
value "first_item_focus_on_first_focus_in" uchar: 0;
value "focus_move_policy" uchar: 0;
value "toolbar_shrink_mode" int: 3;
value "fileselector_expand_enable" uchar: 1;