aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.Main/ShiftOS
diff options
context:
space:
mode:
Diffstat (limited to 'ShiftOS.Main/ShiftOS')
-rw-r--r--ShiftOS.Main/ShiftOS/Apps/ShifterStuff/Shifter.cs12
1 files changed, 8 insertions, 4 deletions
diff --git a/ShiftOS.Main/ShiftOS/Apps/ShifterStuff/Shifter.cs b/ShiftOS.Main/ShiftOS/Apps/ShifterStuff/Shifter.cs
index 1f31ae3..bf116e9 100644
--- a/ShiftOS.Main/ShiftOS/Apps/ShifterStuff/Shifter.cs
+++ b/ShiftOS.Main/ShiftOS/Apps/ShifterStuff/Shifter.cs
@@ -26,11 +26,15 @@ namespace ShiftOS.Main.ShiftOS.Apps.ShifterStuff
void SetDefaultSkin(object sender, EventArgs e)
{
+ int offset = 30;
SetBorderColor(Color.FromArgb(64, 64, 64));
- ShiftSkinData.BtnCloseColor = Color.Black;
- ShiftSkinData.BtnMaxColor = Color.Black;
- ShiftSkinData.BtnMinColor = Color.Black;
- button5_Click(sender, e);
+ ShiftSkinData.BtnCloseColor = Color.Black;
+ ShiftSkinData.BtnCloseHoverColor = Color.FromArgb(40, 40, 40);
+ ShiftSkinData.BtnMaxColor = Color.Black;
+ ShiftSkinData.BtnMaxHoverColor = Color.FromArgb(40, 40, 40);
+ ShiftSkinData.BtnMinColor = Color.Black;
+ ShiftSkinData.BtnMinHoverColor = Color.FromArgb(40, 40, 40);
+ button5_Click(sender, e);
}
void SetColorSkin(object sender, EventArgs e)