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:
parent
bff4ab5cfe
commit
1677288798
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user