diff options
| author | FloppyDiskDrive <[email protected]> | 2017-11-21 17:57:20 -0600 |
|---|---|---|
| committer | FloppyDiskDrive <[email protected]> | 2017-11-21 17:57:20 -0600 |
| commit | 277d5c79e703a287ff11b990822b66e180cd1253 (patch) | |
| tree | 83b655949f52cc0ba8478acdf7cd4ed25a761d91 /ShiftOS.Main | |
| parent | 50ba8da32176b8ca319f930bde3c6529ad6825ff (diff) | |
| parent | 805402b60fcc2afd4f2403bb5e93940ecb83fe33 (diff) | |
| download | shiftos-rewind-277d5c79e703a287ff11b990822b66e180cd1253.tar.gz shiftos-rewind-277d5c79e703a287ff11b990822b66e180cd1253.tar.bz2 shiftos-rewind-277d5c79e703a287ff11b990822b66e180cd1253.zip | |
Merge branch 'master' of https://github.com/ShiftOS-Rewind/ShiftOS
Diffstat (limited to 'ShiftOS.Main')
| -rw-r--r-- | ShiftOS.Main/ShiftOS/Apps/ShifterStuff/Shifter.cs | 12 |
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) |
