Merge lp:~rohbotics/kicad/bug_1424003 into lp:kicad

This commit is contained in:
Rohan Agrawal 2016-02-13 15:23:08 -05:00 committed by Wayne Stambaugh
parent d0932944fc
commit bff0068065
1 changed files with 4 additions and 2 deletions

View File

@ -602,8 +602,10 @@ void ROUTER_TOOL::performRouting()
}
else if( evt->IsAction( &ACT_EndTrack ) )
{
if( m_router->FixRoute( m_endSnapPoint, m_endItem ) )
break;
bool still_routing = true;
while( still_routing )
still_routing = m_router->FixRoute( m_endSnapPoint, m_endItem );
break;
}
handleCommonEvents( *evt );