mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2025-09-14 02:03:12 +02:00
Diferentiate action types in the tool trace
This commit is contained in:
parent
2c86b3d8cf
commit
c29c3d9cc1
@ -150,7 +150,7 @@ bool ACTION_MANAGER::RunHotKey( int aHotKey ) const
|
||||
if( context )
|
||||
{
|
||||
wxLogTrace( kicadTraceToolStack,
|
||||
"ACTION_MANAGER::RunHotKey Running action %s for hotkey %s", context->GetName(),
|
||||
"ACTION_MANAGER::RunHotKey Running context action %s for hotkey %s", context->GetName(),
|
||||
KeyNameFromKeyCode( aHotKey ) );
|
||||
|
||||
return m_toolMgr->RunAction( *context, true );
|
||||
@ -160,7 +160,7 @@ bool ACTION_MANAGER::RunHotKey( int aHotKey ) const
|
||||
for( auto act : global )
|
||||
{
|
||||
wxLogTrace( kicadTraceToolStack,
|
||||
"ACTION_MANAGER::RunHotKey Running action: %s for hotkey %s", act->GetName(),
|
||||
"ACTION_MANAGER::RunHotKey Running global action: %s for hotkey %s", act->GetName(),
|
||||
KeyNameFromKeyCode( aHotKey ) );
|
||||
|
||||
if( m_toolMgr->RunAction( *act, true ) )
|
||||
|
Loading…
x
Reference in New Issue
Block a user