Guess at fixing the InlineDrag action missing param

Fixes KICAD-41T
This commit is contained in:
Marek Roszko 2023-09-30 15:53:35 -04:00
parent 2f2c8b9414
commit 2bb811555b
1 changed files with 2 additions and 1 deletions

View File

@ -2209,7 +2209,8 @@ TOOL_ACTION PCB_ACTIONS::routerTuneDiffPairSkew( TOOL_ACTION_ARGS()
TOOL_ACTION PCB_ACTIONS::routerInlineDrag( TOOL_ACTION_ARGS()
.Name( "pcbnew.InteractiveRouter.InlineDrag" )
.Scope( AS_CONTEXT ) );
.Scope( AS_CONTEXT )
.Parameter<int>( PNS::DM_ANY ) );
TOOL_ACTION PCB_ACTIONS::routerUndoLastSegment( TOOL_ACTION_ARGS()
.Name( "pcbnew.InteractiveRouter.UndoLastSegment" )