diff options
Diffstat (limited to 'ShiftOS.WinForms/Applications/Artpad.cs')
| -rw-r--r-- | ShiftOS.WinForms/Applications/Artpad.cs | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/ShiftOS.WinForms/Applications/Artpad.cs b/ShiftOS.WinForms/Applications/Artpad.cs index 71a5c1a..6f147ed 100644 --- a/ShiftOS.WinForms/Applications/Artpad.cs +++ b/ShiftOS.WinForms/Applications/Artpad.cs @@ -54,6 +54,7 @@ namespace ShiftOS.WinForms.Applications try { InitializeComponent(); + } catch (Exception ex) { @@ -1851,7 +1852,11 @@ namespace ShiftOS.WinForms.Applications public void OnLoad() { - + foreach (Control ctrl in flowcolours.Controls) + { + ctrl.Tag = "keepbg"; + ctrl.BackColor = Color.Black; + } } public void OnSkinLoad() |
