Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(320)

Unified Diff: ui/views/controls/slider.cc

Issue 10854032: Fix a regression issue which causes slider bar focus border not drawn on focus. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/views/controls/slider.cc
diff --git a/ui/views/controls/slider.cc b/ui/views/controls/slider.cc
index 97b5eaf1756883b667133f3470a067a82c79c1b5..e9db2c01f3a904b271b7a903e9129268de333c21 100644
--- a/ui/views/controls/slider.cc
+++ b/ui/views/controls/slider.cc
@@ -218,8 +218,8 @@ void Slider::OnPaint(gfx::Canvas* canvas) {
paint.setAntiAlias(true);
paint.setColor(kButtonColor);
canvas->sk_canvas()->drawCircle(button_cx, button_cy, kButtonRadius, paint);
- View::OnPaint(canvas);
}
+ View::OnPaint(canvas);
}
bool Slider::OnMousePressed(const views::MouseEvent& event) {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698