Don't enable the shove when forcing highlight mode

Fixes https://gitlab.com/kicad/code/kicad/-/issues/16467
This commit is contained in:
Jon Evans 2024-01-01 11:48:14 -05:00
parent 32ece7d888
commit 81dbb12054
1 changed files with 1 additions and 1 deletions

View File

@ -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();