diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-02-01 17:45:53 +0200 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-02-01 17:45:53 +0200 |
| commit | c43439d0c4b7f4434eaf277c0f60c5e3c0494ac2 (patch) | |
| tree | 62988fdea921b80df2ab45e78b18cc24a2e10fdd /Software/Visual_Studio/SideChains/RealTimeGraphEx | |
| parent | eb2c264422b98458979bc96504ce8830a527d48c (diff) | |
| download | Tango-c43439d0c4b7f4434eaf277c0f60c5e3c0494ac2.tar.gz Tango-c43439d0c4b7f4434eaf277c0f60c5e3c0494ac2.zip | |
Removed Shlomo PMR Messages.
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 c1ed37474..70ce3881f 100644 --- a/Software/Visual_Studio/SideChains/RealTimeGraphEx/RealTimeGraphExBase.cs +++ b/Software/Visual_Studio/SideChains/RealTimeGraphEx/RealTimeGraphExBase.cs @@ -1348,7 +1348,11 @@ namespace RealTimeGraphEx { if (pushThread != null) { - pushThread.Abort(); + try + { + pushThread.Abort(); + } + catch { } } } |
