From 9c31cf53bee2fda60abe5b3687c3a8ed8b5e5e5c Mon Sep 17 00:00:00 2001 From: AShifter Date: Sat, 14 Oct 2017 21:45:59 -0600 Subject: Finish Skinning and Serialize Current Skin Almost fixed the contect button glitch and i'm using Newtonsoft.JSON to save skins! --- ShiftOS.Main/ShiftOS/Apps/ShifterStuff/SelectColor.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'ShiftOS.Main/ShiftOS/Apps/ShifterStuff/SelectColor.cs') 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); } -- cgit v1.2.3