Chromium Code Reviews| 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..e36f82d42198759d826d4623994106d3d86a5922 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. |
|
calamity
2014/07/09 05:50:18
nit: 'separator' can wrap to the previous line.
kcarattini
2014/07/09 06:45:21
Done.
|
| + 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(); |