mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-02-22 06:57:42 +01:00
Fix display of select popups with OSR (issue #1988)
This commit is contained in:
parent
4e7013cbfe
commit
be607a0ec9
@ -152,7 +152,7 @@ void CefRenderWidgetHostViewOSR::PlatformCreateCompositorWidget() {
|
|||||||
void CefRenderWidgetHostViewOSR::PlatformResizeCompositorWidget(const gfx::Size& size) {
|
void CefRenderWidgetHostViewOSR::PlatformResizeCompositorWidget(const gfx::Size& size) {
|
||||||
DCHECK(window_);
|
DCHECK(window_);
|
||||||
SetWindowPos(window_->hwnd(), NULL, 0, 0, size.width(), size.height(),
|
SetWindowPos(window_->hwnd(), NULL, 0, 0, size.width(), size.height(),
|
||||||
SWP_NOMOVE | SWP_NOZORDER | SWP_NOREDRAW);
|
SWP_NOMOVE | SWP_NOZORDER | SWP_NOREDRAW | SWP_NOACTIVATE);
|
||||||
}
|
}
|
||||||
|
|
||||||
void CefRenderWidgetHostViewOSR::PlatformDestroyCompositorWidget() {
|
void CefRenderWidgetHostViewOSR::PlatformDestroyCompositorWidget() {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user