This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
Carla
mirror of
https://github.com/falkTX/Carla
Watch
1
Star
0
Fork
0
Code
Releases
42
Activity
Browse Source
Don't leave externalui hanging in case of bad writes
Do not happen in our code, I think, but a good practice anyway
tags/v1.9.11
falkTX
6 years ago
parent
e7f61c6ffe
commit
c7ede953ab
1 changed files
with
2 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-1
source/externalui.py
+ 2
- 1
source/externalui.py
View File
@@ -200,7 +200,8 @@ class ExternalUI(object):
line2 = "%.10f" % line
else:
print("unknown data type to send:", type(line))
return False
hasError = True
break
if not gCarla.utils.pipe_client_write_msg(self.fPipeClient, line2 + "\n"):
hasError = True
Write
Preview
Loading…
Cancel
Save