Pcbnew: fix a duplicate hotkey (E for edit properties)
This commit is contained in:
parent
5411b951ae
commit
9302bbce59
|
@ -271,7 +271,7 @@ static EDA_HOTKEY HkSelectConnection( _HKI( "Select Trivial Connection" ), HK_SE
|
|||
|
||||
static EDA_HOTKEY HkSelectCopper( _HKI( "Select Copper Connection" ), HK_SEL_COPPER_CONNECTION, 'I' );
|
||||
|
||||
static EDA_HOTKEY HkRoutingOptions( _HKI( "Routing Options" ), HK_ROUTING_OPTIONS, 'E' );
|
||||
static EDA_HOTKEY HkRoutingOptions( _HKI( "Routing Options" ), HK_ROUTING_OPTIONS, 'E' + GR_KB_SHIFTCTRL );
|
||||
|
||||
static EDA_HOTKEY HkCustomTrackWidth( _HKI( "Custom Track/Via Size" ), HK_CUSTOM_TRACK_WIDTH, 'Q' );
|
||||
|
||||
|
|
|
@ -293,7 +293,7 @@ void prepareRouteMenu( wxMenu* aParentMenu )
|
|||
aParentMenu->AppendSeparator();
|
||||
|
||||
text = AddHotkeyName( _( "&Interactive Router Settings..." ), g_Board_Editor_Hotkeys_Descr,
|
||||
HK_ROUTING_OPTIONS, IS_ACCELERATOR );
|
||||
HK_ROUTING_OPTIONS );
|
||||
AddMenuItem( aParentMenu, ID_MENU_INTERACTIVE_ROUTER_SETTINGS, text,
|
||||
_( "Configure interactive router" ),
|
||||
KiBitmap( add_tracks_xpm ) ); // fixme: icon
|
||||
|
|
Loading…
Reference in New Issue