From ef09525b70c0e5000deee3ae8a101d387bf989a3 Mon Sep 17 00:00:00 2001 From: MichaelTheShifter Date: Thu, 26 May 2016 19:11:01 -0400 Subject: 0.1.1 was released - time to update the repo. --- source/WindowsFormsApplication1/API.cs | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) (limited to 'source/WindowsFormsApplication1/API.cs') diff --git a/source/WindowsFormsApplication1/API.cs b/source/WindowsFormsApplication1/API.cs index f90532f..b99f98f 100644 --- a/source/WindowsFormsApplication1/API.cs +++ b/source/WindowsFormsApplication1/API.cs @@ -83,7 +83,7 @@ namespace ShiftOS /// to test new features or to bring in lots of codepoints. This is why /// Developer mode should ALWAYS be off in non-dev releases, to prevent cheating. /// - public static bool DeveloperMode = true; + public static bool DeveloperMode = false; /// /// If this is true, only certain applications will open and only @@ -1120,9 +1120,16 @@ namespace ShiftOS /// public static void UpdateWindows() { - foreach (WindowBorder brdr in BordersToUpdate) + try { - brdr.setupall(); + foreach (WindowBorder brdr in BordersToUpdate) + { + brdr.setupall(); + } + } + catch + { + } } -- cgit v1.2.3