diff --git a/libcef/webwidget_host_win.cc b/libcef/webwidget_host_win.cc index 0cd5cd058..847a3ab2e 100644 --- a/libcef/webwidget_host_win.cc +++ b/libcef/webwidget_host_win.cc @@ -183,6 +183,9 @@ LRESULT CALLBACK WebWidgetHost::WndProc(HWND hwnd, UINT message, WPARAM wparam, case WM_NOTIFY: host->OnNotify(0, (NMHDR*)lparam); break; + + case WM_GETDLGCODE: + return DLGC_WANTALLKEYS; } }