DRC markers should not be considered inactive layers

This commit is contained in:
Jon Evans 2023-06-19 21:33:21 -04:00
parent b1cdcca9e6
commit 7d6cb4e77b
1 changed files with 6 additions and 0 deletions

View File

@ -387,6 +387,12 @@ COLOR4D PCB_RENDER_SETTINGS::GetColor( const VIEW_ITEM* aItem, int aLayer ) cons
break;
}
case LAYER_DRC_ERROR:
case LAYER_DRC_WARNING:
case LAYER_DRC_EXCLUSION:
isActive = true;
break;
default:
break;
}