Windows: Fix placement of IME window (issue #1610)
This commit is contained in:
parent
faafdd2cd7
commit
ab50008595
|
@ -149,4 +149,10 @@ patches = [
|
|||
'name': 'chrome_pepper_flash_1586',
|
||||
'path': '../chrome/common/',
|
||||
},
|
||||
{
|
||||
# Fix placement of IME window on Windows.
|
||||
# https://bitbucket.org/chromiumembedded/cef/issue/1610
|
||||
'name': 'ime_1610',
|
||||
'path': '../ui/base/ime/',
|
||||
},
|
||||
]
|
||||
|
|
|
@ -0,0 +1,13 @@
|
|||
diff --git input_method_win.cc input_method_win.cc
|
||||
index 6961683..9072906 100644
|
||||
--- input_method_win.cc
|
||||
+++ input_method_win.cc
|
||||
@@ -26,7 +26,7 @@ static const size_t kExtraNumberOfChars = 20;
|
||||
|
||||
InputMethodWin::InputMethodWin(internal::InputMethodDelegate* delegate,
|
||||
HWND toplevel_window_handle)
|
||||
- : toplevel_window_handle_(toplevel_window_handle),
|
||||
+ : toplevel_window_handle_(::GetAncestor(toplevel_window_handle, GA_ROOT)),
|
||||
pending_requested_direction_(base::i18n::UNKNOWN_DIRECTION),
|
||||
accept_carriage_return_(false),
|
||||
active_(false),
|
Loading…
Reference in New Issue