]> git.saurik.com Git - wxWidgets.git/blobdiff - src/x11/dcclient.cpp
disable select root menu command when the root is hidden
[wxWidgets.git] / src / x11 / dcclient.cpp
index d5832711b8b2e180aae0a8d00686ee65a6167906..291b93b268d5e2a22f21fdade45005daab34e701 100644 (file)
@@ -1779,8 +1779,6 @@ void wxWindowDC::SetFont( const wxFont &font )
 
     m_font = font;
 
-    return;
-
 #if wxUSE_UNICODE
     m_fontdesc = font.GetNativeFontInfo()->description;
 #endif
@@ -2161,6 +2159,12 @@ void wxWindowDC::DoSetClippingRegion( wxCoord x, wxCoord y, wxCoord width, wxCoo
 
     if (!m_window) return;
 
+    if (width <= 0)
+        width = 1;
+
+    if (height <= 0)
+        height = 1;
+
     wxRect rect;
     rect.x = XLOG2DEV(x);
     rect.y = YLOG2DEV(y);