Switch <insert> replacement on OSX to <f1>.

Fixes https://gitlab.com/kicad/code/kicad/issues/11413
This commit is contained in:
Jeff Young 2022-04-25 10:01:02 +01:00
parent d192d3c31d
commit f5d612eaed
2 changed files with 2 additions and 2 deletions

View File

@ -381,7 +381,7 @@ TOOL_ACTION EE_ACTIONS::finishSheet( "eeschema.InteractiveDrawing.finishSheet",
TOOL_ACTION EE_ACTIONS::repeatDrawItem( "eeschema.InteractiveEdit.repeatDrawItem",
AS_GLOBAL,
#ifdef __WXMAC__
'I', LEGACY_HK_NAME( "Repeat Last Item" ),
WXK_F1, LEGACY_HK_NAME( "Repeat Last Item" ),
#else
WXK_INSERT, LEGACY_HK_NAME( "Repeat Last Item" ),
#endif

View File

@ -1193,7 +1193,7 @@ TOOL_ACTION PCB_ACTIONS::distributeVertically( "pcbnew.AlignAndDistribute.distri
TOOL_ACTION PCB_ACTIONS::pointEditorAddCorner( "pcbnew.PointEditor.addCorner",
AS_GLOBAL,
#ifdef __WXMAC__
'I', "",
WXK_F1, "",
#else
WXK_INSERT, "",
#endif