06-23-2023 12:03 AM
Is it safe to adjust for example controls and textboxes in the gui, directly from a thread that isn’t the ui-thread?
it seems to be working fine, however I’m a bit worried that I will run in to some problems eventually
Solved! Go to Solution.
06-23-2023 02:24 AM
Yes, most UI functions are thread-safe. There are some noted exceptions in the documentation but they are very few and edge cases.
06-23-2023 03:12 AM
Okey, thank you!