From dc8a5865d585cb7faeaea3c52a9533ed2da18e21 Mon Sep 17 00:00:00 2001 From: afkiwers Date: Sun, 1 Oct 2023 09:23:24 +1100 Subject: [PATCH] Symbol Editor: SCH_HTTP special treatment Added SCH_HTTP to receive special treatment, same like with database libraries! --- eeschema/symbol_editor/symbol_editor.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/eeschema/symbol_editor/symbol_editor.cpp b/eeschema/symbol_editor/symbol_editor.cpp index e0c9560da4..9baae41bb4 100644 --- a/eeschema/symbol_editor/symbol_editor.cpp +++ b/eeschema/symbol_editor/symbol_editor.cpp @@ -150,7 +150,9 @@ bool SYMBOL_EDIT_FRAME::LoadSymbol( const LIB_ID& aLibId, int aUnit, int aConver if( SYMBOL_LIB_TABLE_ROW* lib = m_libMgr->GetLibrary( aLibId.GetLibNickname() ) ) { if( lib->SchLibType() == SCH_IO_MGR::SCH_DATABASE - || lib->SchLibType() == SCH_IO_MGR::SCH_CADSTAR_ARCHIVE ) + || lib->SchLibType() == SCH_IO_MGR::SCH_CADSTAR_ARCHIVE + || lib->SchLibType() == SCH_IO_MGR::SCH_HTTP ) + { try {