MorgenSullivan
MorgenSullivan
Hi @pijyoi thank you for the quick response! I am actually not using multiple threads - I'm only using signals and slots to control all my processes. The reason I...
Hi @j9ac9k, thanks for the suggestion! I am using those throughout my application to update the GUI when long for loops are running in the back end. Unfortunately, I just...
## Update I've implemented a workaround in my code that has completely stopped the behavior from appearing in the latest instance of the bug. This is a brute-force way of...
@pijyoi that is correct. Each time I create a new PlotWidget, I add it to a list which is stored as an attribute of my MainWindow: ```python self.plot_widgets.append(plot_widget) ```
Thank you for the suggestion on the QueuedConnection. Changing to a QueuedConnection does appear to have changed when the error occurs, and it seemed like it was harder to reproduce...