Don't issue errors for externally-defined env variables.

Fixes: lp:1809300
* https://bugs.launchpad.net/kicad/+bug/1809300
This commit is contained in:
Jeff Young 2018-12-26 21:19:47 +00:00
parent a3d8ab911f
commit f6e6ac3162
1 changed files with 4 additions and 0 deletions

View File

@ -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() )
{