You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
TracksViewer.tracks_list is the actual QWidget object, not just a list of tracks. This makes it fragile when closing/reopening the same viewer, and thus the same TracksViewer object (because it is a Singleton, it will try to re-use the original TracksList).
One solution is to just save the list of tracks in the TracksViewer, and remake the widget from the list each time. This matches our other widgets, and is better than the current state.
The text was updated successfully, but these errors were encountered:
TracksViewer.tracks_list is the actual QWidget object, not just a list of tracks. This makes it fragile when closing/reopening the same viewer, and thus the same TracksViewer object (because it is a Singleton, it will try to re-use the original TracksList).
One solution is to just save the list of tracks in the TracksViewer, and remake the widget from the list each time. This matches our other widgets, and is better than the current state.
The text was updated successfully, but these errors were encountered: