From a0d90788aa9c4fc935d6df46a74ad1942c6c281f Mon Sep 17 00:00:00 2001 From: amaitland Date: Thu, 23 Jul 2020 15:04:12 +1000 Subject: [PATCH] WPF - IME change background colour to transparent Follow on to #3143 --- CefSharp.Wpf/Internals/IMEHandler.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CefSharp.Wpf/Internals/IMEHandler.cs b/CefSharp.Wpf/Internals/IMEHandler.cs index 9bc8078779..168d1313ff 100644 --- a/CefSharp.Wpf/Internals/IMEHandler.cs +++ b/CefSharp.Wpf/Internals/IMEHandler.cs @@ -17,8 +17,8 @@ public static class ImeHandler { // Black SkColor value for underline. public static uint ColorUNDERLINE = 0xFF000000; - // White SkColor value for background. - public static uint ColorBKCOLOR = 0xFFFFFFFF; + // Transparent SkColor value for background. + public static uint ColorBKCOLOR = 0x00000000; public static bool GetResult(IntPtr hwnd, uint lParam, out string text) {