1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-08-08 16:11:14 +02:00

Another fix

This commit is contained in:
Paul Licameli 2015-07-28 12:15:53 -04:00
commit 0b416ed8dd

View File

@ -5587,6 +5587,11 @@ void TrackPanel::HandleRearrange(wxMouseEvent & event)
return;
}
// probably harmless during play? However, we do disallow the click, so check this too.
bool unsafe = IsUnsafe();
if (unsafe)
return;
MixerBoard* pMixerBoard = this->GetMixerBoard(); // Update mixer board, too.
wxString dir;
if (event.m_y < mMoveUpThreshold || event.m_y < 0) {