From 79ad15b4fac8e7cf577cf14cae663146a0e200dd Mon Sep 17 00:00:00 2001 From: Jeff Young Date: Tue, 1 Mar 2022 14:59:13 +0000 Subject: [PATCH] Fix copy/pasta. Fixes https://gitlab.com/kicad/code/kicad/issues/11005 --- eeschema/lib_pin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eeschema/lib_pin.cpp b/eeschema/lib_pin.cpp index 6b5da03933..4351f5cf19 100644 --- a/eeschema/lib_pin.cpp +++ b/eeschema/lib_pin.cpp @@ -783,7 +783,7 @@ void LIB_PIN::PlotPinTexts( PLOTTER* aPlotter, const VECTOR2I& aPinPos, int aPin if( aDrawPinNum ) { plotText( x1 - num_offset, ( y1 + aPinPos.y) / 2, numColor, number, - ANGLE_VERTICAL, m_nameTextSize, GR_TEXT_H_ALIGN_CENTER, + ANGLE_VERTICAL, m_numTextSize, GR_TEXT_H_ALIGN_CENTER, GR_TEXT_V_ALIGN_BOTTOM, numPenWidth ); } }