mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-02-06 05:53:54 +01:00
8da8a4fbf1
- The ffmpeg library is now statically linked (see https://codereview.chromium.org/1141703002). - Off-screen rendering of the PDF viewer does not work in combination with surfaces. Pass the `--disable-surfaces` command-line flag if GPU is enabled (see https://codereview.chromium.org/1169983006).
16 lines
722 B
Diff
16 lines
722 B
Diff
diff --git input_method_win.cc input_method_win.cc
|
|
index 0870fde..23d8038 100644
|
|
--- input_method_win.cc
|
|
+++ input_method_win.cc
|
|
@@ -567,8 +567,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);
|
|
}
|
|
|
|
bool InputMethodWin::DispatchFabricatedKeyEvent(const ui::KeyEvent& event) {
|