2015-04-24 14:11:32 +03:00
|
|
|
diff --git input_method_win.cc input_method_win.cc
|
2016-04-27 16:38:52 -04:00
|
|
|
index 47160e5..1de804e 100644
|
2015-04-24 14:11:32 +03:00
|
|
|
--- input_method_win.cc
|
|
|
|
+++ input_method_win.cc
|
2016-04-27 16:38:52 -04:00
|
|
|
@@ -629,8 +629,9 @@ bool InputMethodWin::IsWindowFocused(const TextInputClient* client) const {
|
2015-04-24 18:33:27 +03:00
|
|
|
// 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.
|
2015-06-05 18:06:48 -04:00
|
|
|
+ // 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);
|
2015-04-24 18:33:27 +03:00
|
|
|
}
|
2015-04-24 14:11:32 +03:00
|
|
|
|
2015-08-14 10:41:08 -04:00
|
|
|
void InputMethodWin::DispatchFabricatedKeyEvent(ui::KeyEvent* event) {
|