Don't enable the shove when forcing highlight mode
Fixes https://gitlab.com/kicad/code/kicad/-/issues/16467
This commit is contained in:
parent
32ece7d888
commit
81dbb12054
|
@ -120,7 +120,7 @@ bool DRAGGER::startDragSegment( const VECTOR2D& aP, SEGMENT* aSeg )
|
|||
m_forceMarkObstaclesMode = true;
|
||||
}
|
||||
|
||||
if( m_shove )
|
||||
if( m_shove && !m_forceMarkObstaclesMode )
|
||||
m_shove->SetInitialLine( m_draggedLine );
|
||||
|
||||
auto distA = ( aP - aSeg->Seg().A ).EuclideanNorm();
|
||||
|
|
Loading…
Reference in New Issue