diff options
| author | AShifter <[email protected]> | 2017-10-14 21:45:59 -0600 |
|---|---|---|
| committer | AShifter <[email protected]> | 2017-10-14 21:45:59 -0600 |
| commit | 9c31cf53bee2fda60abe5b3687c3a8ed8b5e5e5c (patch) | |
| tree | 4910219c6c6c213e7119d166b753bbb168d83db2 /ShiftOS.Main/ShiftOS/Apps/ShifterStuff/SelectColor.cs | |
| parent | c2f59d0b9dffdcfaabff7f0087a40988c39e9f98 (diff) | |
| download | shiftos-rewind-9c31cf53bee2fda60abe5b3687c3a8ed8b5e5e5c.tar.gz shiftos-rewind-9c31cf53bee2fda60abe5b3687c3a8ed8b5e5e5c.tar.bz2 shiftos-rewind-9c31cf53bee2fda60abe5b3687c3a8ed8b5e5e5c.zip | |
Finish Skinning and Serialize Current Skin
Almost fixed the contect button glitch and i'm using Newtonsoft.JSON to
save skins!
Diffstat (limited to 'ShiftOS.Main/ShiftOS/Apps/ShifterStuff/SelectColor.cs')
| -rw-r--r-- | ShiftOS.Main/ShiftOS/Apps/ShifterStuff/SelectColor.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ShiftOS.Main/ShiftOS/Apps/ShifterStuff/SelectColor.cs b/ShiftOS.Main/ShiftOS/Apps/ShifterStuff/SelectColor.cs index 7a97915..f26fe4d 100644 --- a/ShiftOS.Main/ShiftOS/Apps/ShifterStuff/SelectColor.cs +++ b/ShiftOS.Main/ShiftOS/Apps/ShifterStuff/SelectColor.cs @@ -26,12 +26,12 @@ namespace ShiftOS.Main.ShiftOS.Apps { _finalColor = Color.FromArgb(_colorType1, _colorType2, _colorType3); - /* + foreach (var window in ShiftWM.Windows) { - window.Invoke(new Action(() => window.top.BackColor = _finalColor)); + window.Invoke(new Action(() => window.titleBar.BackColor = _finalColor)); } - */ + ShiftWM.StartInfoboxSession("Success!", $"Changed color to:\r\n{_colorType1}, {_colorType2}, {_colorType3}.", InfoboxTemplate.ButtonType.Ok); } |
