Don't call SetFocus(NULL) from WM_KILLFOCUS in CefBrowserImpl (issue #256).

git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@254 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
Marshall Greenblatt 2011-06-07 13:33:03 +00:00
parent c3fd7e5aed
commit d757adb020
1 changed files with 0 additions and 5 deletions

View File

@ -63,11 +63,6 @@ LRESULT CALLBACK CefBrowserImpl::WndProc(HWND hwnd, UINT message,
browser->UIT_SetFocus(browser->UIT_GetWebViewHost(), true);
return 0;
case WM_KILLFOCUS:
if (browser)
browser->UIT_SetFocus(browser->UIT_GetWebViewHost(), false);
return 0;
case WM_ERASEBKGND:
return 0;
}