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

Unified Diff: ash/system/tray/actionable_view.cc

Issue 78803002: Fixing focus highlight on high DPI devices for accessibility (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed Created 7 years, 1 month 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 | « ash/shelf/shelf_view.cc ('k') | ash/system/tray/tray_popup_header_button.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/system/tray/actionable_view.cc
diff --git a/ash/system/tray/actionable_view.cc b/ash/system/tray/actionable_view.cc
index 1fae3ba1e1a68f8b58081001c16fec918b8b3067..9a21b04746991002aaa568546b394ee44d241981 100644
--- a/ash/system/tray/actionable_view.cc
+++ b/ash/system/tray/actionable_view.cc
@@ -24,8 +24,8 @@ ActionableView::~ActionableView() {
void ActionableView::DrawBorder(gfx::Canvas* canvas, const gfx::Rect& bounds) {
gfx::Rect rect = bounds;
- rect.Inset(1, 1, 3, 3);
- canvas->DrawRect(rect, kFocusBorderColor);
+ rect.Inset(1, 1, 3, 2);
+ canvas->DrawSolidFocusRect(rect, kFocusBorderColor);
}
const char* ActionableView::GetClassName() const {
« no previous file with comments | « ash/shelf/shelf_view.cc ('k') | ash/system/tray/tray_popup_header_button.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698