Revert part of name change that affects settings files.

(cherry picked from commit 8b19777d5df109076161e1bb7a385e3b91138fda)
This commit is contained in:
Jeff Young 2025-04-13 21:08:54 +01:00
parent 9a0a4b8671
commit e784b03f61
2 changed files with 3 additions and 3 deletions

View File

@ -62,7 +62,7 @@ GAL_LAYER_ID RenderLayerFromVisibilityLayer( VISIBILITY_LAYER aLayer )
case VISIBILITY_LAYER::VIAS: return LAYER_VIAS; case VISIBILITY_LAYER::VIAS: return LAYER_VIAS;
case VISIBILITY_LAYER::PADS: return LAYER_PADS; case VISIBILITY_LAYER::PADS: return LAYER_PADS;
case VISIBILITY_LAYER::ZONES: return LAYER_ZONES; case VISIBILITY_LAYER::ZONES: return LAYER_ZONES;
case VISIBILITY_LAYER::FILLED_SHAPES: return LAYER_FILLED_SHAPES; case VISIBILITY_LAYER::SHAPES: return LAYER_FILLED_SHAPES;
case VISIBILITY_LAYER::BITMAPS: return LAYER_DRAW_BITMAPS; case VISIBILITY_LAYER::BITMAPS: return LAYER_DRAW_BITMAPS;
case VISIBILITY_LAYER::FOOTPRINTS_FRONT: return LAYER_FOOTPRINTS_FR; case VISIBILITY_LAYER::FOOTPRINTS_FRONT: return LAYER_FOOTPRINTS_FR;
case VISIBILITY_LAYER::FOOTPRINTS_BACK: return LAYER_FOOTPRINTS_BK; case VISIBILITY_LAYER::FOOTPRINTS_BACK: return LAYER_FOOTPRINTS_BK;
@ -92,7 +92,7 @@ std::optional<VISIBILITY_LAYER> VisibilityLayerFromRenderLayer( GAL_LAYER_ID aLa
case LAYER_VIAS: return VISIBILITY_LAYER::VIAS; case LAYER_VIAS: return VISIBILITY_LAYER::VIAS;
case LAYER_PADS: return VISIBILITY_LAYER::PADS; case LAYER_PADS: return VISIBILITY_LAYER::PADS;
case LAYER_ZONES: return VISIBILITY_LAYER::ZONES; case LAYER_ZONES: return VISIBILITY_LAYER::ZONES;
case LAYER_FILLED_SHAPES: return VISIBILITY_LAYER::FILLED_SHAPES; case LAYER_FILLED_SHAPES: return VISIBILITY_LAYER::SHAPES;
case LAYER_DRAW_BITMAPS: return VISIBILITY_LAYER::BITMAPS; case LAYER_DRAW_BITMAPS: return VISIBILITY_LAYER::BITMAPS;
case LAYER_FOOTPRINTS_FR: return VISIBILITY_LAYER::FOOTPRINTS_FRONT; case LAYER_FOOTPRINTS_FR: return VISIBILITY_LAYER::FOOTPRINTS_FRONT;
case LAYER_FOOTPRINTS_BK: return VISIBILITY_LAYER::FOOTPRINTS_BACK; case LAYER_FOOTPRINTS_BK: return VISIBILITY_LAYER::FOOTPRINTS_BACK;

View File

@ -35,7 +35,7 @@ enum class VISIBILITY_LAYER
VIAS, VIAS,
PADS, PADS,
ZONES, ZONES,
FILLED_SHAPES, SHAPES,
BITMAPS, BITMAPS,
FOOTPRINTS_FRONT, FOOTPRINTS_FRONT,
FOOTPRINTS_BACK, FOOTPRINTS_BACK,