From 90c3d41f6760f9b814afb0ab37eb8ec8b25c7d6a Mon Sep 17 00:00:00 2001 From: Wayne Stambaugh Date: Wed, 20 Sep 2017 12:55:19 -0400 Subject: [PATCH] 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 --- pcbnew/menubar_pcbframe.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pcbnew/menubar_pcbframe.cpp b/pcbnew/menubar_pcbframe.cpp index f25482b197..f6b0e15162 100644 --- a/pcbnew/menubar_pcbframe.cpp +++ b/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 - * Copyright (C) 2012-2016 Wayne Stambaugh + * Copyright (C) 2012 Wayne Stambaugh * 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 );