From de2b645fc8215192d87ad358be9f2154004b96b2 Mon Sep 17 00:00:00 2001 From: Alex Shvartzkop Date: Mon, 11 Sep 2023 10:02:43 +0300 Subject: [PATCH] Altium schematic: hide power symbol pin. --- eeschema/sch_plugins/altium/sch_altium_plugin.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/eeschema/sch_plugins/altium/sch_altium_plugin.cpp b/eeschema/sch_plugins/altium/sch_altium_plugin.cpp index ddea792ede..dc3e547e5e 100644 --- a/eeschema/sch_plugins/altium/sch_altium_plugin.cpp +++ b/eeschema/sch_plugins/altium/sch_altium_plugin.cpp @@ -2920,6 +2920,7 @@ void SCH_ALTIUM_PLUGIN::ParsePowerPort( const std::map& aPro pin->SetPosition( { 0, 0 } ); pin->SetLength( 0 ); pin->SetType( ELECTRICAL_PINTYPE::PT_POWER_IN ); + pin->SetVisible( false ); VECTOR2I valueFieldPos = HelperGeneratePowerPortGraphics( libSymbol, elem.style, m_reporter );