Pass unhandled events when dragging in the router tool.

Fixes https://gitlab.com/kicad/code/kicad/issues/6630
This commit is contained in:
Jeff Young 2020-12-06 12:22:17 +00:00
parent 602476cdf2
commit f09ca9ceee
1 changed files with 8 additions and 0 deletions

View File

@ -1610,6 +1610,14 @@ int ROUTER_TOOL::InlineDrag( const TOOL_EVENT& aEvent )
{
wxBell();
}
else
{
evt->SetPassEvent();
}
}
else
{
evt->SetPassEvent();
}
}