diff options
Diffstat (limited to 'source/WindowsFormsApplication1/Apps/IconManager.cs')
| -rw-r--r-- | source/WindowsFormsApplication1/Apps/IconManager.cs | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/source/WindowsFormsApplication1/Apps/IconManager.cs b/source/WindowsFormsApplication1/Apps/IconManager.cs index b33d373..a2969f5 100644 --- a/source/WindowsFormsApplication1/Apps/IconManager.cs +++ b/source/WindowsFormsApplication1/Apps/IconManager.cs @@ -16,7 +16,15 @@ namespace ShiftOS { public IconManager() { - InitializeComponent(); + try + { + InitializeComponent(); + } + catch (Exception ex) + { + API.Crash(ex); + Close(); + } } private void IconManager_Load(object sender, EventArgs e) |
