Append Schematic Content -> Insert Schematic Content
Fixes https://gitlab.com/kicad/code/kicad/issues/7905
This commit is contained in:
parent
1edc232af1
commit
96e4b19444
|
@ -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 )
|
||||
|
|
|
@ -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 );
|
||||
|
|
Loading…
Reference in New Issue