Browse Source

router: added missing case items (fixes regression in component dragging)

Fixes: https://gitlab.com/kicad/code/kicad/-/issues/10010
6.0.7
Tomasz Wlostowski 4 years ago
parent
commit
97c2627de6
  1. 2
      pcbnew/router/pns_router.cpp

2
pcbnew/router/pns_router.cpp

@ -437,6 +437,7 @@ void ROUTER::Move( const VECTOR2I& aP, ITEM* endItem )
break;
case DRAG_SEGMENT:
case DRAG_COMPONENT:
moveDragging( aP, endItem );
break;
@ -685,6 +686,7 @@ bool ROUTER::FixRoute( const VECTOR2I& aP, ITEM* aEndItem, bool aForceFinish )
break;
case DRAG_SEGMENT:
case DRAG_COMPONENT:
rv = m_dragger->FixRoute();
break;

Loading…
Cancel
Save