X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/9f334beabb2c4e7f1e2552c608876184e5c5fa3f..c9ce2da0801562b9c0ecbe680e4f7793060647d5:/src/generic/sashwin.cpp diff --git a/src/generic/sashwin.cpp b/src/generic/sashwin.cpp index b326c0caee..a443cc9f07 100644 --- a/src/generic/sashwin.cpp +++ b/src/generic/sashwin.cpp @@ -480,16 +480,16 @@ void wxSashWindow::DrawSash(wxSashEdgePosition edge, wxDC& dc) { if (edge == wxSASH_LEFT) { - // Draw a black line on the left to indicate that the + // Draw a dark grey line on the left to indicate that the // sash is raised - dc.SetPen(blackPen); + dc.SetPen(mediumShadowPen); dc.DrawLine(GetEdgeMargin(edge), 0, GetEdgeMargin(edge), h); } else { - // Draw a white line on the right to indicate that the + // Draw a light grey line on the right to indicate that the // sash is raised - dc.SetPen(whitePen); + dc.SetPen(lightShadowPen); dc.DrawLine(w - GetEdgeMargin(edge), 0, w - GetEdgeMargin(edge), h); } } @@ -510,17 +510,17 @@ void wxSashWindow::DrawSash(wxSashEdgePosition edge, wxDC& dc) { if (edge == wxSASH_BOTTOM) { - // Draw a black line on the bottom to indicate that the + // Draw a light grey line on the bottom to indicate that the // sash is raised - dc.SetPen(blackPen); + dc.SetPen(lightShadowPen); dc.DrawLine(0, h - GetEdgeMargin(edge), w, h - GetEdgeMargin(edge)); } else { - // Draw a white line on the top to indicate that the + // Draw a drak grey line on the top to indicate that the // sash is raised - dc.SetPen(whitePen); - dc.DrawLine(0, GetEdgeMargin(edge), w, GetEdgeMargin(edge)); + dc.SetPen(mediumShadowPen); + dc.DrawLine(1, GetEdgeMargin(edge), w, GetEdgeMargin(edge)); } } }