1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-05-02 16:49:41 +02:00

Bug 2022 Mixer Board does not automatically update

OnTrackSetChanged sets mUpToDate to false, which assumes that
MixerBoard::OnPaint(evt) will be called, but on Linux, the event
appears to be eaten by MixerTrackCluster::OnPaint and TrackClusters
were not updated.
This commit is contained in:
Steve Daulton 2018-10-31 09:49:30 +00:00
parent 912b24f211
commit 6e75ff27c8

View File

@ -1372,6 +1372,7 @@ void MixerBoard::OnTrackSetChanged(wxEvent &evt)
{
evt.Skip();
mUpToDate = false;
UpdateTrackClusters();
Refresh();
}