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

Don't flag empty placement source as missing in rule area properties

This commit is contained in:
JamesJCode 2024-10-15 18:35:22 +01:00
parent bff4ab5cfe
commit 1677288798

View File

@ -267,6 +267,9 @@ bool DIALOG_RULE_AREA_PROPERTIES::TransferDataToWindow()
auto setupCurrentSourceSelection = [&]( wxComboBox* cb )
{
if( curSourceName == wxEmptyString )
return;
if( !cb->SetStringSelection( curSourceName ) )
{
m_notFoundPlacementSource = true;