From 050c0559befff9f8fb6f8a1ae3aa1e507a3d7ce1 Mon Sep 17 00:00:00 2001 From: Garux Date: Sun, 29 Apr 2018 21:02:16 +0300 Subject: [PATCH] * turn off 64u deep selection of components in QE tool --- radiant/selection.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/radiant/selection.cpp b/radiant/selection.cpp index b8da876a..3712e710 100644 --- a/radiant/selection.cpp +++ b/radiant/selection.cpp @@ -3464,7 +3464,7 @@ void pushSelectable( Selectable& selectable ){ m_selectable = &selectable; } 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_bestIntersection = m_intersection; }