diff options
| author | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2020-03-18 04:46:26 +0200 |
|---|---|---|
| committer | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2020-03-18 04:46:26 +0200 |
| commit | 14d0b3383d04e102029f41661c192e77e22bfd98 (patch) | |
| tree | 25c8e1176941c0a8a27a34a71998b666601650e2 /Software/Visual_Studio/Tango.SystemInfo | |
| parent | cbdadde2ebbc587909f2a120ddb2adfa699e4d65 (diff) | |
| download | Tango-14d0b3383d04e102029f41661c192e77e22bfd98.tar.gz Tango-14d0b3383d04e102029f41661c192e77e22bfd98.zip | |
Added support for FSE mouse gestures via WebRTC.
Added SendBinaryData via WebRtcClient.
Diffstat (limited to 'Software/Visual_Studio/Tango.SystemInfo')
| -rw-r--r-- | Software/Visual_Studio/Tango.SystemInfo/SystemObjectsCollection.cs | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/Software/Visual_Studio/Tango.SystemInfo/SystemObjectsCollection.cs b/Software/Visual_Studio/Tango.SystemInfo/SystemObjectsCollection.cs index 92937f561..0596b5745 100644 --- a/Software/Visual_Studio/Tango.SystemInfo/SystemObjectsCollection.cs +++ b/Software/Visual_Studio/Tango.SystemInfo/SystemObjectsCollection.cs @@ -23,10 +23,13 @@ namespace Tango.SystemInfo str += Name + "\n\n"; - foreach (var obj in Objects) + if (Objects != null) { - str += obj.ToString(); - str += "\n"; + foreach (var obj in Objects) + { + str += obj.ToString(); + str += "\n"; + } } str += "\n"; |
