From 40fab879f03f3b37183d7e3acefcb8a1298a03da Mon Sep 17 00:00:00 2001 From: Steve Lamerton Date: Thu, 17 Nov 2011 20:43:34 +0000 Subject: [PATCH] Remove double buffering from wxWebViewIE as this is handled by the web browser control itself and actually makes flickering worse. Also remove an unnecessary background style. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@69786 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/msw/webview_ie.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/msw/webview_ie.cpp b/src/msw/webview_ie.cpp index 76c4583333..239b86290e 100644 --- a/src/msw/webview_ie.cpp +++ b/src/msw/webview_ie.cpp @@ -83,8 +83,6 @@ bool wxWebViewIE::Create(wxWindow* parent, m_container = new wxActiveXContainer(this, IID_IWebBrowser2, m_webBrowser); - SetBackgroundStyle(wxBG_STYLE_PAINT); - SetDoubleBuffered(true); LoadURL(url); return true; } -- 2.50.0