Browse Source

Fix duplicate accelerator key in board editor view main menu.

Both "&Fit on Screen" and "&Flip Board View" in the "View" main menu were
mapped to the 'F' accelerator key.  Changed "Flip &Board View" to use the
'B' accelerator key.

Fixes lp:1717924

https://bugs.launchpad.net/kicad/+bug/1717924
pull/7/merge
Wayne Stambaugh 8 years ago
parent
commit
90c3d41f67
  1. 4
      pcbnew/menubar_pcbframe.cpp

4
pcbnew/menubar_pcbframe.cpp

@ -3,7 +3,7 @@
*
* Copyright (C) 2017 Jean-Pierre Charras, jp.charras at wanadoo.fr
* Copyright (C) 2012 SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
* Copyright (C) 2012-2016 Wayne Stambaugh <stambaughw@verizon.net>
* Copyright (C) 2012 Wayne Stambaugh <stambaughw@gmail.com>
* Copyright (C) 1992-2017 KiCad Developers, see AUTHORS.txt for contributors.
*
* This program is free software; you can redistribute it and/or
@ -547,7 +547,7 @@ void prepareViewMenu( wxMenu* aParentMenu )
aParentMenu->AppendSeparator();
AddMenuItem( aParentMenu, ID_MENU_PCB_FLIP_VIEW,
_( "&Flip Board View" ),
_( "Flip &Board View" ),
_( "Flip (mirror) the board view" ),
KiBitmap( flip_board_xpm ), wxITEM_CHECK );

Loading…
Cancel
Save