Skip to content

Commit

Permalink
WPF - IME change background colour to transparent
Browse files Browse the repository at this point in the history
Follow on to #3143
  • Loading branch information
amaitland committed Jul 23, 2020
1 parent 5e89f71 commit a0d9078
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CefSharp.Wpf/Internals/IMEHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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)
{
Expand Down

0 comments on commit a0d9078

Please sign in to comment.