]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/wincmn.cpp
Provide a task-dialog based wxMSW wxMessageDialog implementation.
[wxWidgets.git] / src / common / wincmn.cpp
index ac1fbb2f402a04d0194ab109b5ea171d1f5fd422..1c256cbdb760f24bd67ee5e89984f4c9d46636a6 100644 (file)
@@ -2291,7 +2291,9 @@ void wxWindowBase::SetConstraintSizes(bool recurse)
         if ( (constr->width.GetRelationship() != wxAsIs ) ||
              (constr->height.GetRelationship() != wxAsIs) )
         {
-            SetSize(x, y, w, h);
+            // We really shouldn't set negative sizes for the windows so make
+            // them at least of 1*1 size
+            SetSize(x, y, w > 0 ? w : 1, h > 0 ? h : 1);
         }
         else
         {