Hi!
I have an event listener from a file watcher and it can happen during an event of a tree widget.
The problem is I need to select a parent item if one selected item is deleted.
If I do this action during the current tree event, I get a crash from Qt, surely a conflict of events.
The only option I found is to emit a signal and connect to this signal in the same widget to ensure Qt will do the action in a safe place.
Is there any other method, less hacky, to achieve the same result?
Thanks!