From 9af065684b03063a4e9d073f3ccb0731e386e9f0 Mon Sep 17 00:00:00 2001 From: Jeff Young Date: Sat, 1 Jul 2023 12:01:03 +0100 Subject: [PATCH] Show Properties Manager menu entry for FP Editor. Fixes https://gitlab.com/kicad/code/kicad/-/issues/15088 --- pcbnew/menubar_footprint_editor.cpp | 1 + pcbnew/menubar_pcb_editor.cpp | 2 -- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/pcbnew/menubar_footprint_editor.cpp b/pcbnew/menubar_footprint_editor.cpp index 58e79f9137..f7f21dbc49 100644 --- a/pcbnew/menubar_footprint_editor.cpp +++ b/pcbnew/menubar_footprint_editor.cpp @@ -119,6 +119,7 @@ void FOOTPRINT_EDIT_FRAME::doReCreateMenuBar() ACTION_MENU* viewMenu = new ACTION_MENU( false, selTool ); viewMenu->Add( ACTIONS::showFootprintBrowser ); + viewMenu->Add( ACTIONS::showProperties, ACTION_MENU::CHECK ); viewMenu->Add( ACTIONS::show3DViewer ); viewMenu->AppendSeparator(); diff --git a/pcbnew/menubar_pcb_editor.cpp b/pcbnew/menubar_pcb_editor.cpp index f834ce4d55..e1e53140b3 100644 --- a/pcbnew/menubar_pcb_editor.cpp +++ b/pcbnew/menubar_pcb_editor.cpp @@ -225,9 +225,7 @@ void PCB_EDIT_FRAME::doReCreateMenuBar() ACTION_MENU* viewMenu = new ACTION_MENU( false, selTool ); viewMenu->Add( ACTIONS::showFootprintBrowser ); - viewMenu->Add( ACTIONS::showProperties, ACTION_MENU::CHECK ); - viewMenu->Add( PCB_ACTIONS::showSearch, ACTION_MENU::CHECK ); viewMenu->Add( ACTIONS::show3DViewer );