diff options
Diffstat (limited to 'ShiftOS.WinForms/Tools/ControlManager.cs')
| -rw-r--r-- | ShiftOS.WinForms/Tools/ControlManager.cs | 9 |
1 files changed, 8 insertions, 1 deletions
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) |
