From 9dbb8f8eb3d07ee07cf7ce1beab72df056e157c6 Mon Sep 17 00:00:00 2001 From: Roy Ben-Shabat Date: Thu, 16 Aug 2018 12:06:36 +0300 Subject: New Implementation of PPC WiFI networks management! --- .../Visual_Studio/SideChains/RealTimeGraphEx/RealTimeGraphExBase.cs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'Software/Visual_Studio/SideChains/RealTimeGraphEx') diff --git a/Software/Visual_Studio/SideChains/RealTimeGraphEx/RealTimeGraphExBase.cs b/Software/Visual_Studio/SideChains/RealTimeGraphEx/RealTimeGraphExBase.cs index c5eaaf4af..141daf731 100644 --- a/Software/Visual_Studio/SideChains/RealTimeGraphEx/RealTimeGraphExBase.cs +++ b/Software/Visual_Studio/SideChains/RealTimeGraphEx/RealTimeGraphExBase.cs @@ -1036,7 +1036,11 @@ namespace RealTimeGraphEx { while (!_requestTermination.WaitOne(0)) { - OnRenderGraph(); + try + { + OnRenderGraph(); + } + catch { } Thread.Sleep(_refreshRate); } -- cgit v1.3.1