Fix another case of treating a modal return result as a bool.
Fixes https://gitlab.com/kicad/code/kicad/issues/7629
This commit is contained in:
parent
9dacd4abb7
commit
a6c5c40f02
|
@ -190,15 +190,15 @@ void FOOTPRINT_EDIT_FRAME::OnEditItemRequest( BOARD_ITEM* aItem )
|
|||
|
||||
if( zone->GetIsRuleArea() )
|
||||
{
|
||||
success = InvokeRuleAreaEditor( this, &zoneSettings );
|
||||
success = InvokeRuleAreaEditor( this, &zoneSettings ) == wxID_OK;
|
||||
}
|
||||
else if( zone->IsOnCopperLayer() )
|
||||
{
|
||||
success = InvokeCopperZonesEditor( this, &zoneSettings );
|
||||
success = InvokeCopperZonesEditor( this, &zoneSettings ) == wxID_OK;
|
||||
}
|
||||
else
|
||||
{
|
||||
success = InvokeNonCopperZonesEditor( this, &zoneSettings );
|
||||
success = InvokeNonCopperZonesEditor( this, &zoneSettings ) == wxID_OK;
|
||||
}
|
||||
|
||||
if( success )
|
||||
|
|
Loading…
Reference in New Issue