| Index: ui/app_list/views/app_list_background.cc
|
| diff --git a/ui/app_list/views/app_list_background.cc b/ui/app_list/views/app_list_background.cc
|
| index 19085e60bb3892675ad004f109971f9485b4d355..efabd6727e7461f4bed09f41d0026c0a730d6b52 100644
|
| --- a/ui/app_list/views/app_list_background.cc
|
| +++ b/ui/app_list/views/app_list_background.cc
|
| @@ -88,7 +88,9 @@ void AppListBackground::Paint(gfx::Canvas* canvas,
|
| const gfx::Rect contents_view_view_bounds =
|
| contents_view->ConvertRectToWidget(contents_view->GetLocalBounds());
|
| gfx::Rect separator_rect(contents_rect);
|
| - separator_rect.set_y(contents_view_view_bounds.bottom());
|
| + // Extra 1 pixel so the launcher page indicator overlays the separator
|
| + // rect.
|
| + separator_rect.set_y(contents_view_view_bounds.bottom() + 1);
|
| separator_rect.set_height(kBottomSeparatorSize);
|
| canvas->FillRect(separator_rect, kBottomSeparatorColor);
|
| int contents_switcher_top = separator_rect.bottom();
|
|
|