diff --git a/pcbnew/plugins/kicad/pcb_parser.cpp b/pcbnew/plugins/kicad/pcb_parser.cpp index 259d7b57d3..1e203fd754 100644 --- a/pcbnew/plugins/kicad/pcb_parser.cpp +++ b/pcbnew/plugins/kicad/pcb_parser.cpp @@ -2957,11 +2957,12 @@ PCB_SHAPE* PCB_PARSER::parsePCB_SHAPE( BOARD_ITEM* aParent ) break; case T_none: + case T_no: shape->SetFilled( false ); break; default: - Expecting( "yes, none, solid" ); + Expecting( "yes, no, solid, none" ); } }