| Index: ui/views/controls/table/table_view_views.cc
|
| diff --git a/ui/views/controls/table/table_view_views.cc b/ui/views/controls/table/table_view_views.cc
|
| index 2788931cf22e983e0579392d5c4dd5812f94503d..187c0d6886720b44012af5b791c3515591714467 100644
|
| --- a/ui/views/controls/table/table_view_views.cc
|
| +++ b/ui/views/controls/table/table_view_views.cc
|
| @@ -242,7 +242,7 @@ void TableView::OnPaint(gfx::Canvas* canvas) {
|
| for (int i = min_row; i < max_row; ++i) {
|
| gfx::Rect row_bounds(GetRowBounds(i));
|
| if (i == selected_row_) {
|
| - canvas->FillRect(kSelectedBackgroundColor, row_bounds);
|
| + canvas->FillRect(row_bounds, kSelectedBackgroundColor);
|
| if (HasFocus())
|
| canvas->DrawFocusRect(row_bounds);
|
| }
|
|
|