Files
cef/patch/patches/ime_1610.patch
2016-02-24 14:19:19 -08:00

16 lines
716 B
Diff

diff --git input_method_win.cc input_method_win.cc
index 6604c6d..70981dc 100644
--- input_method_win.cc
+++ input_method_win.cc
@@ -586,8 +586,9 @@ bool InputMethodWin::IsWindowFocused(const TextInputClient* client) const {
// receiving keyboard input as long as it is an active window. This works well
// even when the |attached_window_handle| becomes active but has not received
// WM_FOCUS yet.
+ // With CEF |toplevel_window_handle_| may be a child window.
return toplevel_window_handle_ &&
- GetActiveWindow() == toplevel_window_handle_;
+ GetActiveWindow() == ::GetAncestor(toplevel_window_handle_, GA_ROOT);
}
void InputMethodWin::DispatchFabricatedKeyEvent(ui::KeyEvent* event) {