diff options
Diffstat (limited to 'ui/gfx/render_text_win.cc')
-rw-r--r-- | ui/gfx/render_text_win.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ui/gfx/render_text_win.cc b/ui/gfx/render_text_win.cc index 0f880c1..04e83cc 100644 --- a/ui/gfx/render_text_win.cc +++ b/ui/gfx/render_text_win.cc @@ -800,7 +800,8 @@ void RenderTextWin::DrawVisualText(Canvas* canvas) { GetCachedFontSmoothingSettings(&smoothing_enabled, &cleartype_enabled); // Note that |cleartype_enabled| corresponds to Skia's |enable_lcd_text|. renderer.SetFontSmoothingSettings( - smoothing_enabled, cleartype_enabled && !background_is_transparent()); + smoothing_enabled, cleartype_enabled && !background_is_transparent(), + smoothing_enabled /* subpixel_positioning */); ApplyCompositionAndSelectionStyles(); |