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
This commit is contained in:
Wayne Stambaugh 2017-09-20 12:55:19 -04:00
parent 4e8ad8516a
commit 90c3d41f67
1 changed files with 2 additions and 2 deletions

View File

@ -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 );