-
Bug
-
Resolution: Done
-
P2: Important
-
None
-
5.8.0 Beta
-
None
Bug in pickboundingvolumejob.cpp, line 269.
const bool trianglePickingRequested = (m_renderSettings->pickResultMode() == QPickingSettings::AllPicks);
should be
const bool trianglePickingRequested = (m_renderSettings->pickResultMode() == QPickingSettings::TrianglePicking);
This causes the test on line 298 to create a QPickEvent instead of a QPickTriangleEvent and vice versa.