Replies: 2 comments 1 reply
-
I can't see a problem in the code snippets providen. |
Beta Was this translation helpful? Give feedback.
1 reply
-
FFS, figured it out. There was a call to The removal of the newline char was causing the issue. It works now. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Howzit,
I am writing an application which takes user input in the main thread, sends it over the network and records on the GUI what was sent via a callback.
At the same time I have a background thread which listens for network input and records said input on the GUI when received.
The issue I am having is that user input in the main thread is not showing on the GUI after I have received network input and displayed it on the GUI in the background thread.
The strange thing is that input is being read and sent over the network but the ui.set_output() (shown in the callback code block below) is called but doesn't render any changes to the GUI. It also works fine if no network input is received in the background thread.
Anyone got any idea?
Beta Was this translation helpful? Give feedback.
All reactions