diff options
| author | AShifter <[email protected]> | 2017-11-21 15:55:27 -0700 |
|---|---|---|
| committer | AShifter <[email protected]> | 2017-11-21 15:55:31 -0700 |
| commit | 805402b60fcc2afd4f2403bb5e93940ecb83fe33 (patch) | |
| tree | de8efaddfc30fd7058feed53f7afe72c4df0abdf /ShiftOS.Main/ShiftOS | |
| parent | 170aebeb6858e12c797aacb81eaa882c059548a9 (diff) | |
| download | shiftos-rewind-805402b60fcc2afd4f2403bb5e93940ecb83fe33.tar.gz shiftos-rewind-805402b60fcc2afd4f2403bb5e93940ecb83fe33.tar.bz2 shiftos-rewind-805402b60fcc2afd4f2403bb5e93940ecb83fe33.zip | |
did some skinning stuff
yoy
Diffstat (limited to 'ShiftOS.Main/ShiftOS')
| -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) |
