| Index: ash/app_list/app_list_shower_delegate.cc
|
| diff --git a/ash/app_list/app_list_shower_delegate.cc b/ash/app_list/app_list_shower_delegate.cc
|
| index f79d9f91d485f3267049ba430bd82c5e6940e62c..3d0d2c74da33268fa910bb4dca6c1949e7280d24 100644
|
| --- a/ash/app_list/app_list_shower_delegate.cc
|
| +++ b/ash/app_list/app_list_shower_delegate.cc
|
| @@ -56,6 +56,7 @@ gfx::Vector2d GetAnchorPositionOffsetToShelf(
|
| gfx::Point anchor(button_bounds.CenterPoint());
|
| switch (shelf_alignment) {
|
| case SHELF_ALIGNMENT_BOTTOM:
|
| + case SHELF_ALIGNMENT_BOTTOM_LOCKED:
|
| if (base::i18n::IsRTL()) {
|
| int screen_width = widget->GetWorkAreaBoundsInScreen().width();
|
| return gfx::Vector2d(
|
| @@ -261,6 +262,7 @@ gfx::Vector2d AppListShowerDelegate::GetVisibilityAnimationOffset(
|
| Shell::GetInstance()->GetShelfAlignment(root_window);
|
| switch (shelf_alignment) {
|
| case SHELF_ALIGNMENT_BOTTOM:
|
| + case SHELF_ALIGNMENT_BOTTOM_LOCKED:
|
| return gfx::Vector2d(0, kAnimationOffset);
|
| case SHELF_ALIGNMENT_LEFT:
|
| return gfx::Vector2d(-kAnimationOffset, 0);
|
|
|