]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/tbarmsw.cpp
no more SetAppName/SetVendor in the config classes
[wxWidgets.git] / src / msw / tbarmsw.cpp
index 625cfafd027a263917451ac4d6b745b060d83f17..2e5fdab316a83ef464c90d2403d99caecb4c2cbf 100644 (file)
@@ -465,12 +465,20 @@ void wxToolBarMSW::Layout(void)
     node = node->Next();
   }
   if ( GetWindowStyleFlag() & wxTB_HORIZONTAL )
+  {
     m_maxWidth += maxToolWidth;
+    m_maxHeight += maxToolHeight;
+  }
   else
+  {
+    m_maxWidth += maxToolWidth;
     m_maxHeight += maxToolHeight;
+  }
 
   m_maxWidth += m_xMargin;
   m_maxHeight += m_yMargin;
+
+  SetSize(m_maxWidth, m_maxHeight);
 }