diff --git a/eeschema/sch_plugins/altium/sch_altium_plugin.cpp b/eeschema/sch_plugins/altium/sch_altium_plugin.cpp index ce7487ec77..c17abf288b 100644 --- a/eeschema/sch_plugins/altium/sch_altium_plugin.cpp +++ b/eeschema/sch_plugins/altium/sch_altium_plugin.cpp @@ -616,6 +616,12 @@ void SCH_ALTIUM_PLUGIN::ParsePin( const std::map& aPropertie pin->SetNumber( elem.designator ); pin->SetLength( elem.pinlength ); + if( !elem.showDesignator ) + pin->SetNumberTextSize( 0 ); + + if( !elem.showPinName ) + pin->SetNameTextSize( 0 ); + wxPoint pinLocation = elem.location; // the location given is not the connection point! switch( elem.orientation )