-
Have you checked closed issues? https://github.com/Textualize/textual/issues?q=is%3Aissue+is%3Aclosed Please give a brief but clear explanation of the issue. If you can, include a complete working example that demonstrates the bug. Check it can run without modifications. It will be helpful if you run the following command and paste the results:
Feel free to add screenshots and / or videos. These can be very helpful! |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
|
Beta Was this translation helpful? Give feedback.
-
program runs a few seconds, then returns exceptions as pictured below |
Beta Was this translation helpful? Give feedback.
-
It looks to me like the issue here is that the code doesn't observe this warning from the documentation on threaded workers:
Calling self.call_from_thread(self.notify, "func1") |
Beta Was this translation helpful? Give feedback.
It looks to me like the issue here is that the code doesn't observe this warning from the documentation on threaded workers:
Calling
notify
directly from a threaded worker would be an example of something not to do. Your calls to show a notification should, as per the documentation, either be apost_message
to the application where it callsnotify
, or al…