From 761ddcad21f30f7ea0d13a3ed69d32360c08aaea Mon Sep 17 00:00:00 2001 From: Mike Williams Date: Thu, 23 Jun 2022 08:56:12 -0400 Subject: [PATCH] Schematic: Add shift-space hotkey for consistency with PCB editor Already in 7.0/master. Fixes: https://gitlab.com/kicad/code/kicad/-/issues/10858 --- eeschema/tools/ee_actions.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/eeschema/tools/ee_actions.cpp b/eeschema/tools/ee_actions.cpp index cde7bf0db0..ea4c4c660b 100644 --- a/eeschema/tools/ee_actions.cpp +++ b/eeschema/tools/ee_actions.cpp @@ -646,7 +646,8 @@ TOOL_ACTION EE_ACTIONS::toggleHiddenFields( "eeschema.EditorControl.showHiddenFi _( "Show Hidden Fields" ), _( "Toggle display of hidden text fields" ) ); TOOL_ACTION EE_ACTIONS::toggleForceHV( "eeschema.EditorControl.forceHVLines", - AS_GLOBAL, 0, "", + AS_GLOBAL, + MD_SHIFT + ' ', "", _( "Force H/V Wires and Buses" ), _( "Switch H & V only mode for new wires and buses" ), BITMAPS::lines90 );