customdrawn: Small frame3d color improvement

git-svn-id: trunk@33994 -
This commit is contained in:
sekelsenmat 2011-12-06 13:43:30 +00:00
parent 83d025bb08
commit 72229752c8

View File

@ -357,7 +357,7 @@ begin
// white lines in the left and top
ADest.Pen.Style := psSolid;
ADest.Brush.Style := bsClear;
ADest.Pen.Color := WIN2000_FRAME_DARK_GRAY;
ADest.Pen.Color := WIN2000_FRAME_GRAY;
ADest.MoveTo(ARect.Left, ARect.Bottom);
ADest.LineTo(ARect.Left, ARect.Top);
ADest.LineTo(ARect.Right, ARect.Top);
@ -377,7 +377,7 @@ begin
ADest.LineTo(ARect.Left, ARect.Top);
ADest.LineTo(ARect.Right, ARect.Top);
// Dark grey line on the right and bottom
ADest.Pen.Color := WIN2000_FRAME_DARK_GRAY;
ADest.Pen.Color := WIN2000_FRAME_GRAY;
ADest.MoveTo(ARect.Left, ARect.Bottom);
ADest.LineTo(ARect.Right, ARect.Bottom);
ADest.LineTo(ARect.Right, ARect.Top);