* turn off 64u deep selection of components in QE tool

This commit is contained in:
Garux 2018-04-29 21:02:16 +03:00
parent 412e6cc60a
commit 050c0559be

View File

@ -3464,7 +3464,7 @@ void pushSelectable( Selectable& selectable ){
m_selectable = &selectable; m_selectable = &selectable;
} }
void popSelectable(){ void popSelectable(){
if ( m_intersection.equalEpsilon( m_bestIntersection, 0.25f, 0.001f ) ) { if ( m_intersection.equalEpsilon( m_bestIntersection, 0.25f, 2e-6f ) ) {
m_bestSelectable.push_back( m_selectable ); m_bestSelectable.push_back( m_selectable );
m_bestIntersection = m_intersection; m_bestIntersection = m_intersection;
} }