From 76e06222226de03925d80215145225527ca23c88 Mon Sep 17 00:00:00 2001 From: Jeff Young Date: Fri, 12 Apr 2019 00:13:24 +0100 Subject: [PATCH] Redraw and Position Relative can't share the same hotkey. --- pcbnew/hotkeys.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcbnew/hotkeys.cpp b/pcbnew/hotkeys.cpp index a242890a3b..dbef6a82d0 100644 --- a/pcbnew/hotkeys.cpp +++ b/pcbnew/hotkeys.cpp @@ -143,7 +143,7 @@ static EDA_HOTKEY HkMoveItem( _HKI( "Move Item" ), HK_MOVE_ITEM, 'M' ); static EDA_HOTKEY HkMoveItemExact( _HKI( "Move Item Exactly" ), HK_MOVE_ITEM_EXACT, 'M' + GR_KB_CTRL ); static EDA_HOTKEY HkPositionItemRelative( _HKI( "Position Item Relative" ), HK_POSITION_RELATIVE, - 'R' + GR_KB_CTRL ); + 'P' + GR_KB_SHIFT ); static EDA_HOTKEY HkDuplicateItem( _HKI( "Duplicate Item" ), HK_DUPLICATE_ITEM, 'D' + GR_KB_CTRL ); static EDA_HOTKEY HkDuplicateItemAndIncrement( _HKI( "Duplicate Item and Increment" ), HK_DUPLICATE_ITEM_AND_INCREMENT,