From c7daf511bc7e2e7d2e0d424f9f6c6836a405a235 Mon Sep 17 00:00:00 2001 From: Alex Shvartzkop Date: Sun, 15 Oct 2023 05:48:17 +0300 Subject: [PATCH] Fix importing a symbol in Symbol editor. --- eeschema/symbol_editor/symbol_editor_import_export.cpp | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/eeschema/symbol_editor/symbol_editor_import_export.cpp b/eeschema/symbol_editor/symbol_editor_import_export.cpp index 64d08e7d52..79dda45376 100644 --- a/eeschema/symbol_editor/symbol_editor_import_export.cpp +++ b/eeschema/symbol_editor/symbol_editor_import_export.cpp @@ -84,12 +84,7 @@ void SYMBOL_EDIT_FRAME::ImportSymbol() if( dlg.ShowModal() == wxID_CANCEL ) return; - wxFileName fn; - - if( dlg.GetFilterIndex() == 0 ) - fn = EnsureFileExtension( dlg.GetPath(), KiCadSymbolLibFileExtension ); - else - fn = EnsureFileExtension( dlg.GetPath(), LegacySymbolLibFileExtension ); + wxFileName fn( dlg.GetPath() ); m_mruPath = fn.GetPath();