]> git.saurik.com Git - wxWidgets.git/commitdiff
set extra margins to be 0 by default, not 50
authorVadim Zeitlin <vadim@wxwidgets.org>
Sun, 27 Jan 2002 13:58:35 +0000 (13:58 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sun, 27 Jan 2002 13:58:35 +0000 (13:58 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13851 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/generic/grid.cpp

index 2471fc009017440f30dbf5cb62402c23cd44c3bd..fe5b45ebedb619593238e8b56aed792ba7044207 100644 (file)
@@ -3819,7 +3819,7 @@ void wxGrid::Init()
     m_batchCount = 0;
 
     m_extraWidth =
-    m_extraHeight = 50;
+    m_extraHeight = 0;
 }
 
 // ----------------------------------------------------------------------------