Commit f02980cd authored by charras's avatar charras

eeschema: library order when loading libs fixed (i hope)

parent 82d8faeb
...@@ -164,7 +164,8 @@ void LoadLibraries (WinEDA_DrawFrame* frame) ...@@ -164,7 +164,8 @@ void LoadLibraries (WinEDA_DrawFrame* frame)
else else
msg += _( " error!" ); msg += _( " error!" );
frame->PrintMsg( msg ); } frame->PrintMsg( msg );
}
// reorder the linked list to match the order filename list: // reorder the linked list to match the order filename list:
int NumOfLibs; int NumOfLibs;
...@@ -212,9 +213,7 @@ void LoadLibraries (WinEDA_DrawFrame* frame) ...@@ -212,9 +213,7 @@ void LoadLibraries (WinEDA_DrawFrame* frame)
MyFree( libs ); MyFree( libs );
for( lib = g_LibraryList; lib != NULL; lib = lib->m_Pnext ) for( lib = g_LibraryList; lib != NULL; lib = lib->m_Pnext )
{
lib->m_Flags = 0; lib->m_Flags = 0;
}
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment