From bbe37edb68f9e7535216bff80ba3e6b16cbca398 Mon Sep 17 00:00:00 2001 From: Michael Date: Thu, 2 Feb 2017 09:47:23 -0500 Subject: Shiftnet, and audio fixes --- ShiftOS.WinForms/Tools/ControlManager.cs | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'ShiftOS.WinForms/Tools/ControlManager.cs') diff --git a/ShiftOS.WinForms/Tools/ControlManager.cs b/ShiftOS.WinForms/Tools/ControlManager.cs index 456e46d..78d3534 100644 --- a/ShiftOS.WinForms/Tools/ControlManager.cs +++ b/ShiftOS.WinForms/Tools/ControlManager.cs @@ -180,7 +180,14 @@ namespace ShiftOS.WinForms.Tools ctrl.Font = SkinEngine.LoadedSkin.Header3Font; } - ctrl.Text = Localization.Parse(ctrl.Text); + try + { + ctrl.Text = Localization.Parse(ctrl.Text); + } + catch + { + + } ctrl.KeyDown += (o, a) => { if (a.Control && a.KeyCode == Keys.T) -- cgit v1.2.3