From: Vadim Zeitlin Date: Sun, 27 Jan 2002 13:58:35 +0000 (+0000) Subject: set extra margins to be 0 by default, not 50 X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/526dbb9590c4f4940985a01e910bf26a1cb4a0d0 set extra margins to be 0 by default, not 50 git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13851 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/generic/grid.cpp b/src/generic/grid.cpp index 2471fc0090..fe5b45ebed 100644 --- a/src/generic/grid.cpp +++ b/src/generic/grid.cpp @@ -3819,7 +3819,7 @@ void wxGrid::Init() m_batchCount = 0; m_extraWidth = - m_extraHeight = 50; + m_extraHeight = 0; } // ----------------------------------------------------------------------------