1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-08-01 08:29:27 +02:00

Fix crashes mousing over TCP

This commit is contained in:
Paul Licameli 2017-07-10 23:18:33 -04:00
parent bca09f4320
commit 4dcd10584f
2 changed files with 3 additions and 0 deletions

View File

@ -57,6 +57,7 @@ std::vector<UIHandlePtr> NoteTrackControls::HitTest
mClickHandle, state, rect, track))) mClickHandle, state, rect, track)))
return result; return result;
#endif #endif
return result;
}(); }();
if (result) { if (result) {
results.push_back(result); results.push_back(result);

View File

@ -80,6 +80,8 @@ std::vector<UIHandlePtr> WaveTrackControls::HitTest
if (NULL != (result = PanSliderHandle::HitTest( if (NULL != (result = PanSliderHandle::HitTest(
mPanHandle, state, rect, track))) mPanHandle, state, rect, track)))
return result; return result;
return result;
}(); }();
if (result) { if (result) {
results.push_back(result); results.push_back(result);