7
mirror of https://gitlab.com/kicad/code/kicad.git synced 2025-04-20 21:11:43 +00:00

Remove prohibition from clearing Value field in Symbol Fields Table.

Fixes https://gitlab.com/kicad/code/kicad/-/issues/19745
This commit is contained in:
Jeff Young 2025-02-18 11:53:34 +00:00
parent 426ac96bb7
commit fea659a002

View File

@ -839,12 +839,6 @@ void FIELDS_EDITOR_GRID_DATA_MODEL::ApplyData( SCH_COMMIT& aCommit )
// Reference is not editable from this dialog
continue;
}
else if( destField->GetId() == VALUE_FIELD )
{
// Value field cannot be empty
if( srcValue.IsEmpty() )
continue;
}
destField->SetText( symbol.Schematic()->ConvertRefsToKIIDs( srcValue ) );
}