| Index: ui/app_list/app_list_item_view.cc
|
| diff --git a/ui/app_list/app_list_item_view.cc b/ui/app_list/app_list_item_view.cc
|
| index c5263bb8902022759474b5b1bb55d8b6d44f1374..995ce7b1d38d92512761ce7b7d26a769a33609ac 100644
|
| --- a/ui/app_list/app_list_item_view.cc
|
| +++ b/ui/app_list/app_list_item_view.cc
|
| @@ -306,4 +306,13 @@ void AppListItemView::StateChanged() {
|
| }
|
| }
|
|
|
| +bool AppListItemView::ShouldEnterPushedState(const ui::Event& event) {
|
| + // Don't enter pushed state for ET_GESTURE_TAP_DOWN so that hover gray
|
| + // background does not show up during scroll.
|
| + if (event.type() == ui::ET_GESTURE_TAP_DOWN)
|
| + return false;
|
| +
|
| + return views::CustomButton::ShouldEnterPushedState(event);
|
| +}
|
| +
|
| } // namespace app_list
|
|
|