mirror of
https://github.com/cookiengineer/audacity
synced 2025-11-14 17:14:07 +01:00
Fix crashes mousing over TCP
This commit is contained in:
@@ -57,6 +57,7 @@ std::vector<UIHandlePtr> NoteTrackControls::HitTest
|
||||
mClickHandle, state, rect, track)))
|
||||
return result;
|
||||
#endif
|
||||
return result;
|
||||
}();
|
||||
if (result) {
|
||||
results.push_back(result);
|
||||
|
||||
@@ -80,6 +80,8 @@ std::vector<UIHandlePtr> WaveTrackControls::HitTest
|
||||
if (NULL != (result = PanSliderHandle::HitTest(
|
||||
mPanHandle, state, rect, track)))
|
||||
return result;
|
||||
|
||||
return result;
|
||||
}();
|
||||
if (result) {
|
||||
results.push_back(result);
|
||||
|
||||
Reference in New Issue
Block a user