Skip to content

Commit a0d9078

Browse files
committed
WPF - IME change background colour to transparent
Follow on to #3143
1 parent 5e89f71 commit a0d9078

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

CefSharp.Wpf/Internals/IMEHandler.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ public static class ImeHandler
1717
{
1818
// Black SkColor value for underline.
1919
public static uint ColorUNDERLINE = 0xFF000000;
20-
// White SkColor value for background.
21-
public static uint ColorBKCOLOR = 0xFFFFFFFF;
20+
// Transparent SkColor value for background.
21+
public static uint ColorBKCOLOR = 0x00000000;
2222

2323
public static bool GetResult(IntPtr hwnd, uint lParam, out string text)
2424
{

0 commit comments

Comments
 (0)