mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2024-12-14 02:24:03 +01:00
a64237bcb0
Known issues: - The CefLoadCRLSetsFile function needs to be re-implemented (see issue #2497). - Linux: GTK2 support has been removed. The cefclient sample needs to be updated to use GTK3 (see issue #2014).
16 lines
788 B
Diff
16 lines
788 B
Diff
diff --git ui/base/ime/input_method_win_base.cc ui/base/ime/input_method_win_base.cc
|
|
index 046f0d05268c..abbe8763e8fb 100644
|
|
--- ui/base/ime/input_method_win_base.cc
|
|
+++ ui/base/ime/input_method_win_base.cc
|
|
@@ -266,8 +266,9 @@ bool InputMethodWinBase::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);
|
|
}
|
|
|
|
LRESULT InputMethodWinBase::OnChar(HWND window_handle,
|