From cd27f801f6dd36536d37309ae558562bca100df1 Mon Sep 17 00:00:00 2001 From: Alex Shvartzkop Date: Thu, 29 Feb 2024 17:36:32 +0300 Subject: [PATCH] Allow .kicad_sym in Import Symbol filters. --- eeschema/symbol_editor/symbol_editor_import_export.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/eeschema/symbol_editor/symbol_editor_import_export.cpp b/eeschema/symbol_editor/symbol_editor_import_export.cpp index 35ade64a23..ce3095d5ff 100644 --- a/eeschema/symbol_editor/symbol_editor_import_export.cpp +++ b/eeschema/symbol_editor/symbol_editor_import_export.cpp @@ -53,9 +53,6 @@ void SYMBOL_EDIT_FRAME::ImportSymbol() for( const SCH_IO_MGR::SCH_FILE_T& fileType : SCH_IO_MGR::SCH_FILE_T_vector ) { - if( fileType == SCH_IO_MGR::SCH_KICAD || fileType == SCH_IO_MGR::SCH_LEGACY ) - continue; // this is "Import non-KiCad schematic" - IO_RELEASER pi( SCH_IO_MGR::FindPlugin( fileType ) ); if( !pi )