diff options
Diffstat (limited to 'Software/Visual_Studio/SideChains/RealTimeGraphEx')
| -rw-r--r-- | Software/Visual_Studio/SideChains/RealTimeGraphEx/RealTimeGraphExBase.cs | 6 |
1 files changed, 5 insertions, 1 deletions
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); } |
