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

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: Address Alexei's issues Created 4 years, 8 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..bae34afb31025427793e795d4b2ac8ef724c240b 100644
--- a/ui/gfx/canvas_skia.cc
+++ b/ui/gfx/canvas_skia.cc
@@ -123,9 +123,9 @@ 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->SetStyle(ITALIC, (font_style & Font::ITALIC) != 0);
render_text->SetStyle(UNDERLINE, (font_style & Font::UNDERLINE) != 0);
+ render_text->SetWeight(font_list.GetFontWeight());
}
} // namespace

Powered by Google App Engine
This is Rietveld 408576698