1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-02-05 03:03:10 +01:00

Plug-in list doesn't display properly on Mac

After sorting, the list doesn't completely update until you click
within it.  It this completely refreshes.  This fixes it...
This commit is contained in:
Leland Lucius
2020-03-06 23:13:50 -06:00
parent a9658e6ef7
commit 6c9cdb4bc1

View File

@@ -879,6 +879,9 @@ void PluginRegistrationDialog::OnSort(wxListEvent & evt)
mSortColumn = col;
mEffects->SortItems(SortCompare, (wxUIntPtr) this);
// Without a refresh, wxMac doesn't redisplay the list properly after a sort
mEffects->Refresh();
}
void PluginRegistrationDialog::OnListChar(wxKeyEvent & evt)