Fix step export not resolving variables
Fixes https://gitlab.com/kicad/code/kicad/-/issues/12754
This commit is contained in:
parent
cd30da179a
commit
d8e9436d92
|
@ -37,11 +37,12 @@
|
||||||
#include <string>
|
#include <string>
|
||||||
|
|
||||||
#include <wx_filename.h>
|
#include <wx_filename.h>
|
||||||
|
#include <pgm_base.h>
|
||||||
|
|
||||||
KICADPCB::KICADPCB( const wxString& aPcbName )
|
KICADPCB::KICADPCB( const wxString& aPcbName )
|
||||||
{
|
{
|
||||||
m_resolver.Set3DConfigDir( wxT( "" ) );
|
m_resolver.Set3DConfigDir( wxT( "" ) );
|
||||||
|
m_resolver.SetProgramBase( &Pgm() );
|
||||||
|
|
||||||
m_topSolderMask = wxColour( 15, 102, 15 );
|
m_topSolderMask = wxColour( 15, 102, 15 );
|
||||||
m_bottomSolderMask = wxColour( 15, 102, 15 );
|
m_bottomSolderMask = wxColour( 15, 102, 15 );
|
||||||
|
|
Loading…
Reference in New Issue