Don't issue errors for externally-defined env variables.
Fixes: lp:1809300 * https://bugs.launchpad.net/kicad/+bug/1809300
This commit is contained in:
parent
a3d8ab911f
commit
f6e6ac3162
|
@ -222,6 +222,10 @@ bool DIALOG_CONFIGURE_PATHS::TransferDataFromWindow()
|
|||
{
|
||||
wxString name = m_EnvVars->GetCellValue( row, EV_NAME_COL );
|
||||
wxString path = m_EnvVars->GetCellValue( row, EV_PATH_COL );
|
||||
wxString external = m_EnvVars->GetCellValue( row, EV_FLAG_COL );
|
||||
|
||||
if( external.Length() )
|
||||
continue;
|
||||
|
||||
if( name.IsEmpty() )
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue