router: update status message on meander spacing/amplitude hotkeys

Fixes: lp:1710266
* https://bugs.launchpad.net/kicad/+bug/1710266
This commit is contained in:
Seth Hillbrand 2017-08-16 14:15:28 +02:00 committed by Tomasz Włostowski
parent 53f6228ef4
commit 90873a101b
1 changed files with 4 additions and 0 deletions

View File

@ -181,21 +181,25 @@ void LENGTH_TUNER_TOOL::performTuning()
{
placer->AmplitudeStep( -1 );
m_router->Move( end, NULL );
updateStatusPopup( statusPopup );
}
else if( evt->IsAction( &ACT_AmplIncrease ) )
{
placer->AmplitudeStep( 1 );
m_router->Move( end, NULL );
updateStatusPopup( statusPopup );
}
else if(evt->IsAction( &ACT_SpacingDecrease ) )
{
placer->SpacingStep( -1 );
m_router->Move( end, NULL );
updateStatusPopup( statusPopup );
}
else if( evt->IsAction( &ACT_SpacingIncrease ) )
{
placer->SpacingStep( 1 );
m_router->Move( end, NULL );
updateStatusPopup( statusPopup );
}
}