From bfc3dcbe26252e7e7573eca65fc32e4383d3e909 Mon Sep 17 00:00:00 2001 From: Mike Williams Date: Sat, 8 Jul 2023 16:49:20 -0400 Subject: [PATCH] Footprint Editor: don't override field text sizes in editor Fixes: https://gitlab.com/kicad/code/kicad/-/issues/15134 --- pcbnew/load_select_footprint.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcbnew/load_select_footprint.cpp b/pcbnew/load_select_footprint.cpp index 03f84efdf8..be2fe5a76f 100644 --- a/pcbnew/load_select_footprint.cpp +++ b/pcbnew/load_select_footprint.cpp @@ -355,7 +355,7 @@ FOOTPRINT* PCB_BASE_FRAME::loadFootprint( const LIB_ID& aFootprintId ) // any netinfo list (should be not needed, but it can be edited from the footprint editor ) footprint->ClearAllNets(); - if( m_pcb ) + if( m_pcb && !IsType( FRAME_FOOTPRINT_EDITOR ) ) footprint->ApplyDefaultFieldSettings( *m_pcb ); }