1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-07-25 08:58:06 +02:00

Fix for bug 1611: after select none, temporary in-correctness

After select none, the timeline and selection times are temporarily not updated.

Fix: AudacityProject::SelectNone refreshes the TrackPanel, so call it after changing the SelectedRegion.
This commit is contained in:
David Bailes 2017-03-20 15:06:59 +00:00
parent ec7fe2dfcc
commit 879579475d

View File

@ -5169,8 +5169,8 @@ void AudacityProject::OnSelectAll()
void AudacityProject::OnSelectNone()
{
this->SelectNone();
mViewInfo.selectedRegion.collapseToT0();
SelectNone();
ModifyState(false);
}