]> git.saurik.com Git - wxWidgets.git/commitdiff
don't set negative size in wxSizerItem::SetDimension
authorPaul Cornett <paulcor@bullseye.com>
Wed, 6 Sep 2006 03:01:17 +0000 (03:01 +0000)
committerPaul Cornett <paulcor@bullseye.com>
Wed, 6 Sep 2006 03:01:17 +0000 (03:01 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41025 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/sizer.cpp

index 9d6d50de0b35cfc962d559c30ffbdf2039dc65c0..a691f6431c5af175f8741d922e325819d515c421 100644 (file)
@@ -354,6 +354,11 @@ void wxSizerItem::SetDimension( const wxPoint& pos_, const wxSize& size_ )
         size.y -= m_border;
     }
 
         size.y -= m_border;
     }
 
+    if (size.x < 0)
+        size.x = 0;
+    if (size.y < 0)
+        size.y = 0;
+
     m_rect = wxRect(pos, size);
 
     switch ( m_kind )
     m_rect = wxRect(pos, size);
 
     switch ( m_kind )