Fix incorrect OSR IME suggestion background color (issue #2562)

This commit is contained in:
Marshall Greenblatt 2019-01-28 12:12:22 -05:00
parent a189c5b937
commit 778ee5c60c
1 changed files with 1 additions and 1 deletions

View File

@ -996,7 +996,7 @@ void CefRenderWidgetHostViewOSR::ImeSetComposition(
ui::ImeTextSpan::Type::kComposition, line.range.from, line.range.to,
line.thick ? ui::ImeTextSpan::Thickness::kThick
: ui::ImeTextSpan::Thickness::kThin,
line.color, line.background_color, std::vector<std::string>()));
line.background_color, line.color, std::vector<std::string>()));
}
gfx::Range range(replacement_range.from, replacement_range.to);