draw toolbar separators in Win32 theme

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14600 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2002-03-15 00:33:38 +00:00
parent a9b33d6bb4
commit 2d3cddaf52

View File

@ -2381,7 +2381,11 @@ void wxWin32Renderer::DrawToolBarButton(wxDC& dc,
}
else // a separator
{
// TODO
// leave a small gap aroudn the line, also account for the toolbar
// border itself
DrawVerticalLine(dc, rectOrig.x + rectOrig.width/2,
rectOrig.y + 2*BORDER_THICKNESS,
rectOrig.GetBottom() - BORDER_THICKNESS);
}
}