fixed wrong border/sash widths (typo during last commit)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@22504 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2003-08-02 22:58:30 +00:00
parent 350fffae72
commit 28f9eac4b9

View File

@ -209,11 +209,11 @@ wxRendererGeneric::GetSplitterParams(const wxWindow *win)
if ( win->HasFlag(wxSP_3D) )
{
sashWidth = 7;
border = 3;
border = 2;
}
else // no 3D effect
{
sashWidth = 2;
sashWidth = 3;
border = 0;
}