eeschema: library order when loading libs fixed (i hope)
This commit is contained in:
parent
82d8faeb40
commit
f02980cdaf
|
@ -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,10 +213,8 @@ 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;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**************************************************************/
|
/**************************************************************/
|
||||||
|
|
Loading…
Reference in New Issue