mirror of
https://github.com/cookiengineer/audacity
synced 2026-01-29 16:27:03 +01:00
A null check
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user