From 96e4b1944471d14e5ecef13456aa667047a677ea Mon Sep 17 00:00:00 2001 From: Jeff Young Date: Fri, 18 Jun 2021 21:23:09 +0100 Subject: [PATCH] Append Schematic Content -> Insert Schematic Content Fixes https://gitlab.com/kicad/code/kicad/issues/7905 --- eeschema/files-io.cpp | 2 +- eeschema/menubar.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/eeschema/files-io.cpp b/eeschema/files-io.cpp index 95b4842f5b..81ebd3201e 100644 --- a/eeschema/files-io.cpp +++ b/eeschema/files-io.cpp @@ -654,7 +654,7 @@ bool SCH_EDIT_FRAME::AppendSchematic() // open file chooser dialog wxString path = wxPathOnly( Prj().GetProjectFullName() ); - wxFileDialog dlg( this, _( "Append Schematic" ), path, wxEmptyString, + wxFileDialog dlg( this, _( "Insert Schematic" ), path, wxEmptyString, KiCadSchematicFileWildcard(), wxFD_OPEN | wxFD_FILE_MUST_EXIST ); if( dlg.ShowModal() == wxID_CANCEL ) diff --git a/eeschema/menubar.cpp b/eeschema/menubar.cpp index cb8e294a32..9c1b4d9a82 100644 --- a/eeschema/menubar.cpp +++ b/eeschema/menubar.cpp @@ -85,7 +85,7 @@ void SCH_EDIT_FRAME::ReCreateMenuBar() fileMenu->AppendSeparator(); - fileMenu->Add( _( "Append Schematic Sheet Content..." ), + fileMenu->Add( _( "Insert Schematic Sheet Content..." ), _( "Append schematic sheet content from another project to the current sheet" ), ID_APPEND_PROJECT, BITMAPS::add_document );