eeschema, fixed : after a change in library list (Preference menu) the library cache was the first in priority list (now it is the last ,as it does)
This commit is contained in:
parent
035b510201
commit
60a6be33b5
|
@ -48,9 +48,9 @@ bool operator!=( const CMP_LIBRARY& aLibrary, const wxChar* aName )
|
|||
bool operator<( const CMP_LIBRARY& aItem1, const CMP_LIBRARY& aItem2 )
|
||||
{
|
||||
/* The cache library always is sorted to the end of the library list. */
|
||||
if( aItem1.IsCache() )
|
||||
return true;
|
||||
if( aItem2.IsCache() )
|
||||
return true;
|
||||
if( aItem1.IsCache() )
|
||||
return false;
|
||||
|
||||
/* If the sort order array isn't set, then sort alphabetically except. */
|
||||
|
|
|
@ -23,7 +23,6 @@ DIALOG_EDIT_COMPONENT_IN_LIBRARY::DIALOG_EDIT_COMPONENT_IN_LIBRARY( WinEDA_Libed
|
|||
{
|
||||
m_Parent = aParent;
|
||||
m_RecreateToolbar = false;
|
||||
m_AliasLocation = -1;
|
||||
|
||||
Init();
|
||||
|
||||
|
|
|
@ -106,15 +106,16 @@ Error: %s" ),
|
|||
CMP_LIBRARY::GetLibraryList().sort();
|
||||
|
||||
#ifdef __WXDEBUG__
|
||||
wxLogDebug( wxT( "Requested component library sort order." ) );
|
||||
wxLogDebug( wxT( "LoadLibraries () requested component library sort order:" ) );
|
||||
|
||||
for( size_t i = 0; i < sortOrder.GetCount(); i++ )
|
||||
wxLogDebug( wxT( " " ) + sortOrder[i] );
|
||||
|
||||
wxLogDebug( wxT( "Component library sort order:" ) );
|
||||
wxLogDebug( wxT( "Real component library sort order:" ) );
|
||||
|
||||
for ( i = CMP_LIBRARY::GetLibraryList().begin();
|
||||
i < CMP_LIBRARY::GetLibraryList().end(); i++ )
|
||||
wxLogDebug( wxT( " " ) + i->GetName() );
|
||||
wxLogDebug( wxT( "end LoadLibraries ()" ) );
|
||||
#endif
|
||||
}
|
||||
|
|
|
@ -165,7 +165,7 @@ int WinEDA_SchematicFrame::LoadOneEEProject( const wxString& FileName,
|
|||
{
|
||||
wxString errMsg;
|
||||
|
||||
wxLogDebug( wxT( "Load schematic cache library file <%s>" ),
|
||||
wxLogDebug( wxT( "LoadOneEEProject() load schematic cache library file <%s>" ),
|
||||
GetChars( fn.GetFullPath() ) );
|
||||
msg = wxT( "Load " ) + fn.GetFullPath();
|
||||
|
||||
|
|
Loading…
Reference in New Issue