-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: signal race condition when editing filters in AnalysisView (#148)
- Loading branch information
1 parent
8444aae
commit 650188b
Showing
2 changed files
with
14 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Emitting the
filter_changed
signal above could potentially cause a race condition with thisupdate_content
, sinceupdate_event
is called downstream of thefilter_changed
signal. This could explain #148.