1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-01-29 16:27:03 +01:00

A null check

This commit is contained in:
Paul Licameli
2017-07-14 23:02:20 -04:00
parent 52d8dc1525
commit 558efda20c

View File

@@ -952,7 +952,7 @@ void TrackPanel::HandleMotion
// Did not move cell to cell, but did change the target
refreshCode = updateFlags;
if (handle != oldHandle)
if (handle && handle != oldHandle)
handle->Enter(true);
}