Index: ui/app_list/views/app_list_folder_view.cc |
diff --git a/ui/app_list/views/app_list_folder_view.cc b/ui/app_list/views/app_list_folder_view.cc |
index 78273ef6aff416cdbec839e955e6f9703fe02611..970147ca3a32687594f2a733f5446a4833c0e5f3 100644 |
--- a/ui/app_list/views/app_list_folder_view.cc |
+++ b/ui/app_list/views/app_list_folder_view.cc |
@@ -99,7 +99,8 @@ void AppListFolderView::ScheduleShowHideAnimation(bool show, |
UpdateFolderNameVisibility(true); |
ui::ScopedLayerAnimationSettings animation(layer()->GetAnimator()); |
- animation.SetTweenType(gfx::Tween::EASE_IN_2); |
+ animation.SetTweenType( |
+ show ? kFolderFadeInTweenType : kFolderFadeOutTweenType); |
animation.AddObserver(this); |
animation.SetTransitionDuration(base::TimeDelta::FromMilliseconds( |
show ? kFolderTransitionInDurationMs : kFolderTransitionOutDurationMs)); |