Add another logging call to the tool manager

This commit is contained in:
Ian McInerney 2021-04-16 17:40:56 +01:00
parent 660d1596e2
commit e7798d8f23
1 changed files with 3 additions and 0 deletions

View File

@ -400,6 +400,9 @@ bool TOOL_MANAGER::runTool( TOOL_BASE* aTool )
TOOL_ID id = aTool->GetId();
wxLogTrace( kicadTraceToolStack, "TOOL_MANAGER::runTool - running tool %s",
aTool->GetName() );
if( aTool->GetType() == INTERACTIVE )
static_cast<TOOL_INTERACTIVE*>( aTool )->resetTransitions();