Browse Source

Fix a very minor coding style issue

pull/5/merge
jean-pierre charras 8 years ago
parent
commit
a8e98ade49
  1. 4
      pcbnew/eagle_plugin.cpp

4
pcbnew/eagle_plugin.cpp

@ -2020,7 +2020,9 @@ PCB_LAYER_ID EAGLE_PLUGIN::kicad_layer( int aEagleLayer ) const
// some layers do not map to KiCad
wxLogMessage( wxString::Format( "Unsupported Eagle layer '%s' (%d), converted to Dwgs.User layer",
eagle_layer_name( aEagleLayer ), aEagleLayer ) );
kiLayer = Dwgs_User; break;
kiLayer = Dwgs_User;
break;
}
}

Loading…
Cancel
Save