From: Vadim Zeitlin Date: Mon, 15 Oct 2001 23:00:25 +0000 (+0000) Subject: refresh wxStaticText after changing its label if we change its size X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/5039d7edc251d00531578413d23cf7b24e8bda7d refresh wxStaticText after changing its label if we change its size git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12022 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/msw/stattext.cpp b/src/msw/stattext.cpp index 238c9ce243..a83000876e 100644 --- a/src/msw/stattext.cpp +++ b/src/msw/stattext.cpp @@ -150,6 +150,8 @@ void wxStaticText::SetLabel(const wxString& label) if ( !(GetWindowStyle() & wxST_NO_AUTORESIZE) ) { DoSetSize(-1, -1, -1, -1, wxSIZE_AUTO_WIDTH | wxSIZE_AUTO_HEIGHT); + + Refresh(); } }