router: update status message on meander spacing/amplitude hotkeys
Fixes: lp:1710266 * https://bugs.launchpad.net/kicad/+bug/1710266
This commit is contained in:
parent
53f6228ef4
commit
90873a101b
|
@ -181,21 +181,25 @@ void LENGTH_TUNER_TOOL::performTuning()
|
||||||
{
|
{
|
||||||
placer->AmplitudeStep( -1 );
|
placer->AmplitudeStep( -1 );
|
||||||
m_router->Move( end, NULL );
|
m_router->Move( end, NULL );
|
||||||
|
updateStatusPopup( statusPopup );
|
||||||
}
|
}
|
||||||
else if( evt->IsAction( &ACT_AmplIncrease ) )
|
else if( evt->IsAction( &ACT_AmplIncrease ) )
|
||||||
{
|
{
|
||||||
placer->AmplitudeStep( 1 );
|
placer->AmplitudeStep( 1 );
|
||||||
m_router->Move( end, NULL );
|
m_router->Move( end, NULL );
|
||||||
|
updateStatusPopup( statusPopup );
|
||||||
}
|
}
|
||||||
else if(evt->IsAction( &ACT_SpacingDecrease ) )
|
else if(evt->IsAction( &ACT_SpacingDecrease ) )
|
||||||
{
|
{
|
||||||
placer->SpacingStep( -1 );
|
placer->SpacingStep( -1 );
|
||||||
m_router->Move( end, NULL );
|
m_router->Move( end, NULL );
|
||||||
|
updateStatusPopup( statusPopup );
|
||||||
}
|
}
|
||||||
else if( evt->IsAction( &ACT_SpacingIncrease ) )
|
else if( evt->IsAction( &ACT_SpacingIncrease ) )
|
||||||
{
|
{
|
||||||
placer->SpacingStep( 1 );
|
placer->SpacingStep( 1 );
|
||||||
m_router->Move( end, NULL );
|
m_router->Move( end, NULL );
|
||||||
|
updateStatusPopup( statusPopup );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue