From 68dd508fbdb721ae9f7a7f3dff84e32456ac179a Mon Sep 17 00:00:00 2001 From: Jon Evans Date: Sun, 30 Aug 2020 15:22:52 -0400 Subject: [PATCH] Use correct wildcard for creating new schematics --- eeschema/sch_edit_frame.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eeschema/sch_edit_frame.cpp b/eeschema/sch_edit_frame.cpp index dce5e0f5b1..0cfa59c5fd 100644 --- a/eeschema/sch_edit_frame.cpp +++ b/eeschema/sch_edit_frame.cpp @@ -845,7 +845,7 @@ void SCH_EDIT_FRAME::NewProject() wxString pro_dir = m_mruPath; wxFileDialog dlg( this, _( "New Schematic" ), pro_dir, wxEmptyString, - LegacySchematicFileWildcard(), wxFD_SAVE ); + KiCadSchematicFileWildcard(), wxFD_SAVE ); if( dlg.ShowModal() != wxID_CANCEL ) {