Browse Source

Resolve hotkey conflicts.

Fixes https://gitlab.com/kicad/code/kicad/-/issues/18201
revert-0c36e162
Jeff Young 8 months ago
parent
commit
413468cd04
  1. 4
      eeschema/tools/ee_actions.cpp

4
eeschema/tools/ee_actions.cpp

@ -1616,7 +1616,7 @@ TOOL_ACTION EE_ACTIONS::stopSimulation( TOOL_ACTION_ARGS()
TOOL_ACTION EE_ACTIONS::simProbe( TOOL_ACTION_ARGS()
.Name( "eeschema.Simulation.probe" )
.Scope( AS_GLOBAL )
.DefaultHotkey( 'P' )
.DefaultHotkey( MD_SHIFT + 'P' )
.FriendlyName( _( "Probe Schematic..." ) )
.Tooltip( _( "Add a simulator probe" ) )
.Icon( BITMAPS::sim_probe ) );
@ -1624,7 +1624,7 @@ TOOL_ACTION EE_ACTIONS::simProbe( TOOL_ACTION_ARGS()
TOOL_ACTION EE_ACTIONS::simTune( TOOL_ACTION_ARGS()
.Name( "eeschema.Simulation.tune" )
.Scope( AS_GLOBAL )
.DefaultHotkey( 'T' )
.DefaultHotkey( MD_SHIFT + 'T' )
.FriendlyName( _( "Add Tuned Value..." ) )
.Tooltip( _( "Select a value to be tuned" ) )
.Icon( BITMAPS::sim_tune ) );

Loading…
Cancel
Save