From 8e5f929724774c90f0c81aec64e5190d739721af Mon Sep 17 00:00:00 2001 From: Simon Schaak <9246423-sschaak@users.noreply.gitlab.com> Date: Mon, 13 Dec 2021 14:16:05 +0100 Subject: [PATCH] Fix default reference text copy for new footprints --- pcbnew/board_design_settings.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcbnew/board_design_settings.cpp b/pcbnew/board_design_settings.cpp index fccf4ae0c3..6f0352c78c 100644 --- a/pcbnew/board_design_settings.cpp +++ b/pcbnew/board_design_settings.cpp @@ -74,7 +74,7 @@ BOARD_DESIGN_SETTINGS::BOARD_DESIGN_SETTINGS( JSON_SETTINGS* aParent, const std: // Second is always the value m_DefaultFPTextItems.emplace_back( wxT( "" ), true, F_Fab ); // Any following ones are freebies - m_DefaultFPTextItems.emplace_back( wxT( "${REF}" ), true, F_Fab ); + m_DefaultFPTextItems.emplace_back( wxT( "${REFERENCE}" ), true, F_Fab ); m_LineThickness[ LAYER_CLASS_SILK ] = Millimeter2iu( DEFAULT_SILK_LINE_WIDTH ); m_TextSize[ LAYER_CLASS_SILK ] = wxSize( Millimeter2iu( DEFAULT_SILK_TEXT_SIZE ),