aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.SystemInfo
diff options
context:
space:
mode:
authorRoy Ben Shabat <Roy.mail.net@gmail.com>2020-03-18 04:46:26 +0200
committerRoy Ben Shabat <Roy.mail.net@gmail.com>2020-03-18 04:46:26 +0200
commit14d0b3383d04e102029f41661c192e77e22bfd98 (patch)
tree25c8e1176941c0a8a27a34a71998b666601650e2 /Software/Visual_Studio/Tango.SystemInfo
parentcbdadde2ebbc587909f2a120ddb2adfa699e4d65 (diff)
downloadTango-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.cs9
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";