aboutsummaryrefslogtreecommitdiff
path: root/TimeHACK.Engine
diff options
context:
space:
mode:
Diffstat (limited to 'TimeHACK.Engine')
-rw-r--r--TimeHACK.Engine/Paintbrush.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/TimeHACK.Engine/Paintbrush.cs b/TimeHACK.Engine/Paintbrush.cs
index 96d324d..026e5d8 100644
--- a/TimeHACK.Engine/Paintbrush.cs
+++ b/TimeHACK.Engine/Paintbrush.cs
@@ -23,10 +23,10 @@ namespace TimeHACK.Engine
public static void PaintClassicBordersIndented(object sender, PaintEventArgs e, int borderwidth)
{
ControlPaint.DrawBorder(e.Graphics, ((Control)sender).ClientRectangle,
- SystemColors.ControlLightLight, borderwidth, ButtonBorderStyle.Inset,
- SystemColors.ControlLightLight, borderwidth, ButtonBorderStyle.Inset,
- SystemColors.ControlLightLight, borderwidth, ButtonBorderStyle.Inset,
- SystemColors.ControlLightLight, borderwidth, ButtonBorderStyle.Inset);
+ SystemColors.ControlDarkDark, borderwidth, ButtonBorderStyle.Inset,
+ SystemColors.ControlDarkDark, borderwidth, ButtonBorderStyle.Inset,
+ SystemColors.ControlDarkDark, borderwidth, ButtonBorderStyle.Inset,
+ SystemColors.ControlDarkDark, borderwidth, ButtonBorderStyle.Inset);
}
}
}