From: Vadim Zeitlin Date: Sat, 5 Nov 2011 11:24:00 +0000 (+0000) Subject: Use wxWindowUpdateLocker to speed up updates of the static widgets sample page. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/c052f780a4d89bad64b22bb1ad594b0bc7790e82 Use wxWindowUpdateLocker to speed up updates of the static widgets sample page. See #13619. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@69681 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/samples/widgets/static.cpp b/samples/widgets/static.cpp index 65dd5e4c61..58a2d0610e 100644 --- a/samples/widgets/static.cpp +++ b/samples/widgets/static.cpp @@ -41,6 +41,7 @@ #include "wx/statline.h" #include "wx/generic/stattextg.h" +#include "wx/wupdlock.h" #include "widgets.h" #include "icons/statbox.xpm" @@ -376,6 +377,8 @@ void StaticWidgetsPage::Reset() void StaticWidgetsPage::CreateStatic() { + wxWindowUpdateLocker lock(this); + bool isVert = m_chkVert->GetValue(); if ( m_sizerStatBox )