From: Steve Lamerton Date: Thu, 17 Nov 2011 20:43:34 +0000 (+0000) Subject: Remove double buffering from wxWebViewIE as this is handled by the web browser contro... X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/40fab879f03f3b37183d7e3acefcb8a1298a03da 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 --- 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; }