mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2025-03-30 06:56:57 +00:00
FP_LIB_TABLE_ROW::LibraryExists(): ensure environment variables are expanded
Fixes https://gitlab.com/kicad/code/kicad/-/issues/19800
This commit is contained in:
parent
d4c9e1f069
commit
9e510759b8
@ -66,7 +66,7 @@ void FP_LIB_TABLE_ROW::SetType( const wxString& aType )
|
||||
bool FP_LIB_TABLE_ROW::LibraryExists() const
|
||||
{
|
||||
if( plugin )
|
||||
return plugin->CanReadLibrary( GetFullURI() );
|
||||
return plugin->CanReadLibrary( GetFullURI( true ) );
|
||||
|
||||
return false;
|
||||
}
|
||||
|
@ -121,7 +121,7 @@ std::optional<rectpack2D::rect_wh> spreadRectangles( rect_vector& vecSubRects, i
|
||||
return result;
|
||||
}
|
||||
|
||||
#include <wx/log.h>
|
||||
|
||||
void SpreadFootprints( std::vector<FOOTPRINT*>* aFootprints, VECTOR2I aTargetBoxPosition,
|
||||
bool aGroupBySheet, int aComponentGap, int aGroupGap )
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user