mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-06 14:58:13 +02:00
customdrawn: Small frame3d color improvement
git-svn-id: trunk@33994 -
This commit is contained in:
parent
83d025bb08
commit
72229752c8
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user