aboutsummaryrefslogtreecommitdiff
path: root/source/WindowsFormsApplication1/Apps/Appscape.cs
diff options
context:
space:
mode:
authorCarver Harrison <[email protected]>2016-07-24 14:56:02 -0700
committerCarver Harrison <[email protected]>2016-07-24 14:56:02 -0700
commit321ddfc66a0a366efa64506c0c33316ca57f251d (patch)
treedea2f19fd5a33246e305a3de333a1e29574322b0 /source/WindowsFormsApplication1/Apps/Appscape.cs
parentbf7a488011c09be39bdb4980c2bb020cb1fdb71a (diff)
downloadshiftos-c--321ddfc66a0a366efa64506c0c33316ca57f251d.tar.gz
shiftos-c--321ddfc66a0a366efa64506c0c33316ca57f251d.tar.bz2
shiftos-c--321ddfc66a0a366efa64506c0c33316ca57f251d.zip
HOLY **** THATS A LOT OFF ADDIITIONS
Diffstat (limited to 'source/WindowsFormsApplication1/Apps/Appscape.cs')
-rw-r--r--source/WindowsFormsApplication1/Apps/Appscape.cs10
1 files changed, 9 insertions, 1 deletions
diff --git a/source/WindowsFormsApplication1/Apps/Appscape.cs b/source/WindowsFormsApplication1/Apps/Appscape.cs
index 81025f0..3cec4c6 100644
--- a/source/WindowsFormsApplication1/Apps/Appscape.cs
+++ b/source/WindowsFormsApplication1/Apps/Appscape.cs
@@ -22,7 +22,15 @@ namespace ShiftOS
/// </summary>
public Appscape()
{
- InitializeComponent();
+ try
+ {
+ InitializeComponent();
+ }
+ catch (Exception ex)
+ {
+ API.Crash(ex);
+ Close();
+ }
}
private List<AppscapeClient> clients = null;