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

Unified Diff: ui/gfx/canvas_skia.cc

Issue 1819753003: Allow various font weights in gfx. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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
Index: ui/gfx/canvas_skia.cc
diff --git a/ui/gfx/canvas_skia.cc b/ui/gfx/canvas_skia.cc
index d20f92fe56d810d1ba10c9900164f8bd03f378b5..d6a25ee104ad91ee2fec46aca97428f559742e15 100644
--- a/ui/gfx/canvas_skia.cc
+++ b/ui/gfx/canvas_skia.cc
@@ -123,7 +123,7 @@ void UpdateRenderText(const Rect& rect,
render_text->SetColor(color);
const int font_style = font_list.GetFontStyle();
- render_text->SetStyle(BOLD, (font_style & Font::BOLD) != 0);
+ render_text->SetWeight(font_list.GetFontWeight());
msw 2016/03/22 01:53:43 nit: move below SetStyle calls
Mikus 2016/03/22 14:19:50 Done.
render_text->SetStyle(ITALIC, (font_style & Font::ITALIC) != 0);
render_text->SetStyle(UNDERLINE, (font_style & Font::UNDERLINE) != 0);
}

Powered by Google App Engine
This is Rietveld 408576698