From 2bb811555bc4cfe45d92b6fe6d095c0325c8522b Mon Sep 17 00:00:00 2001 From: Marek Roszko Date: Sat, 30 Sep 2023 15:53:35 -0400 Subject: [PATCH] Guess at fixing the InlineDrag action missing param Fixes KICAD-41T --- pcbnew/tools/pcb_actions.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pcbnew/tools/pcb_actions.cpp b/pcbnew/tools/pcb_actions.cpp index 8f153b7caa..695e4d0488 100644 --- a/pcbnew/tools/pcb_actions.cpp +++ b/pcbnew/tools/pcb_actions.cpp @@ -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( PNS::DM_ANY ) ); TOOL_ACTION PCB_ACTIONS::routerUndoLastSegment( TOOL_ACTION_ARGS() .Name( "pcbnew.InteractiveRouter.UndoLastSegment" )