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

Unified Diff: chrome/views/checkbox.cc

Issue 14452: fixes issue 4376: Press "Tab" key to navigate - Text focus is showing... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 12 years 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: chrome/views/checkbox.cc
===================================================================
--- chrome/views/checkbox.cc (revision 6950)
+++ chrome/views/checkbox.cc (working copy)
@@ -84,11 +84,13 @@
gfx::Rect r;
ComputeTextRect(&r);
// Paint the focus border if any.
- if (HasFocus())
- canvas->DrawFocusRect(r.x() - kFocusPaddingHorizontal,
+ if (HasFocus()) {
+ // Mirror left point for rectangle to draw focus for RTL text.
+ canvas->DrawFocusRect(MirroredLeftPointForRect(r) - kFocusPaddingHorizontal,
r.y() - kFocusPaddingVertical,
r.width() + kFocusPaddingHorizontal * 2,
r.height() + kFocusPaddingVertical * 2);
+ }
PaintFloatingView(canvas, label_, r.x(), r.y(), r.width(), r.height());
}
« 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