Index: ui/views/controls/label.cc |
diff --git a/ui/views/controls/label.cc b/ui/views/controls/label.cc |
index aadac0e2a90d13d7d11104f851346b490ed59cb7..38ebf8a082e2594266b9fca9d107018c15f033b0 100644 |
--- a/ui/views/controls/label.cc |
+++ b/ui/views/controls/label.cc |
@@ -307,6 +307,10 @@ void Label::OnBoundsChanged(const gfx::Rect& previous_bounds) { |
void Label::OnPaint(gfx::Canvas* canvas) { |
OnPaintBackground(canvas); |
+ // We skip painting the focus border because it is being handled seperately by |
+ // some subclasses of Label. We do not want View's focus border painting to |
+ // interfere with that. |
+ OnPaintBorder(canvas); |
string16 paint_text; |
gfx::Rect text_bounds; |