From 1443d69f0023fc8b612ee5f8ac3915cd61ba813b Mon Sep 17 00:00:00 2001 From: Ian McInerney Date: Wed, 6 May 2020 22:37:40 +0100 Subject: [PATCH] Move the import non-kicad schematic item to the import submenu This matches its location in Pcbnew. --- eeschema/menubar.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/eeschema/menubar.cpp b/eeschema/menubar.cpp index a997ca90fa..0a6db467de 100644 --- a/eeschema/menubar.cpp +++ b/eeschema/menubar.cpp @@ -88,10 +88,6 @@ void SCH_EDIT_FRAME::ReCreateMenuBar() _( "Append schematic sheet content from another project to the current sheet" ), add_document_xpm, EE_CONDITIONS::ShowAlways ); - fileMenu->AddItem( ID_IMPORT_NON_KICAD_SCH, _( "Import Non KiCad Schematic..." ), - _( "Replace current schematic sheet with one imported from another application" ), - import_document_xpm, EE_CONDITIONS::ShowAlways ); - fileMenu->AddSeparator(); // Import submenu @@ -99,6 +95,10 @@ void SCH_EDIT_FRAME::ReCreateMenuBar() submenuImport->SetTool( selTool ); submenuImport->SetTitle( _( "Import" ) ); submenuImport->SetIcon( import_xpm ); + submenuImport->Add( _( "Import Non KiCad Schematic..." ), + _( "Replace current schematic sheet with one imported from another application" ), + ID_IMPORT_NON_KICAD_SCH, import_document_xpm ); + submenuImport->Add( EE_ACTIONS::importFPAssignments ); fileMenu->AddMenu( submenuImport, EE_CONDITIONS::ShowAlways );