From 37c5fba1620b35fe62d998e08f2f4b6cf57a5107 Mon Sep 17 00:00:00 2001 From: chylex <contact@chylex.com> Date: Sat, 5 Aug 2017 19:50:30 +0200 Subject: [PATCH] Change text color of sound notification file option for invalid paths --- Core/Other/Settings/TabSettingsSounds.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/Other/Settings/TabSettingsSounds.cs b/Core/Other/Settings/TabSettingsSounds.cs index 89ab56e0..fe7247d8 100644 --- a/Core/Other/Settings/TabSettingsSounds.cs +++ b/Core/Other/Settings/TabSettingsSounds.cs @@ -34,7 +34,7 @@ public override void OnClosing(){ private void tbCustomSound_TextChanged(object sender, EventArgs e){ bool isEmpty = string.IsNullOrEmpty(tbCustomSound.Text); - tbCustomSound.ForeColor = isEmpty || File.Exists(tbCustomSound.Text) ? SystemColors.WindowText : Color.Maroon; + tbCustomSound.ForeColor = isEmpty || File.Exists(tbCustomSound.Text) ? SystemColors.WindowText : Color.Red; btnPlaySound.Enabled = !isEmpty; btnResetSound.Enabled = !isEmpty; }