bitmaps: Handle mask colors

Some transparent bitmaps use masking colors to show the binary
opaque/transparent.

Fixes: lp:1814893
* https://bugs.launchpad.net/kicad/+bug/1814893
This commit is contained in:
Seth Hillbrand
2019-02-07 21:27:43 -08:00
parent 7789ec4bf1
commit 5da4e18664
3 changed files with 11 additions and 3 deletions
+1 -1
View File
@@ -234,5 +234,5 @@ BITMAP_DEF SCH_BITMAP::GetMenuImage() const
void SCH_BITMAP::ViewGetLayers( int aLayers[], int& aCount ) const
{
aCount = 1;
aLayers[0] = LAYER_WORKSHEET;
aLayers[0] = LAYER_DRAW_BITMAPS;
}