From: Robin Dunn Date: Fri, 6 Jan 2006 05:26:22 +0000 (+0000) Subject: Allow the frame (if there is one) to resize the toolbar after Realize X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/2091f5e71a1d04cf9277565121725f764d466a06 Allow the frame (if there is one) to resize the toolbar after Realize is called git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@36728 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/msw/tbar95.cpp b/src/msw/tbar95.cpp index 2aadedd476..f98b8c45d6 100644 --- a/src/msw/tbar95.cpp +++ b/src/msw/tbar95.cpp @@ -315,7 +315,6 @@ void wxToolBar::Recreate() } Realize(); - UpdateSize(); } wxToolBar::~wxToolBar() @@ -1051,6 +1050,7 @@ bool wxToolBar::Realize() InvalidateBestSize(); SetBestFittingSize(); + UpdateSize(); return true; }