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:
Jeff Young 2021-02-20 18:22:11 +00:00
parent 9dacd4abb7
commit a6c5c40f02
1 changed files with 3 additions and 3 deletions

View File

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