Skip to content

Commit bcbc329

Browse files
committed
WPF - IME change background colour to transparent
Follow on to #3143
1 parent 9ce8fe4 commit bcbc329

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
@@ -16,8 +16,8 @@ public static class ImeHandler
1616
{
1717
// Black SkColor value for underline.
1818
public static uint ColorUNDERLINE = 0xFF000000;
19-
// White SkColor value for background.
20-
public static uint ColorBKCOLOR = 0xFFFFFFFF;
19+
// Transparent SkColor value for background.
20+
public static uint ColorBKCOLOR = 0x00000000;
2121

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

0 commit comments

Comments
 (0)