pns_line_placer: do not constraint the 45deg of current segment in free angle mode.
Fixes #8691 https://gitlab.com/kicad/code/kicad/issues/8691
This commit is contained in:
parent
175b474c3e
commit
740b028180
|
@ -929,7 +929,8 @@ void LINE_PLACER::routeStep( const VECTOR2I& aP )
|
|||
if( !routeHead( aP, new_head ) )
|
||||
fail = true;
|
||||
|
||||
if( !new_head.Is45Degree() )
|
||||
if( !new_head.Is45Degree() &&
|
||||
!(Settings().GetFreeAngleMode() && Settings().Mode() == RM_MarkObstacles) )
|
||||
fail = true;
|
||||
|
||||
if( fail )
|
||||
|
|
Loading…
Reference in New Issue