From 69165aa0a0409d6b8ff9cf16cf18f71fe1021fd5 Mon Sep 17 00:00:00 2001 From: Chris Pavlina Date: Sun, 19 Feb 2017 13:43:50 -0500 Subject: [PATCH] Do not show hidden fields in the component selector This is not necessary anymore, as they are displayed in the info box. --- eeschema/dialogs/dialog_choose_component.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/eeschema/dialogs/dialog_choose_component.cpp b/eeschema/dialogs/dialog_choose_component.cpp index 07c5d3cdab..7d9f83354a 100644 --- a/eeschema/dialogs/dialog_choose_component.cpp +++ b/eeschema/dialogs/dialog_choose_component.cpp @@ -362,6 +362,7 @@ void DIALOG_CHOOSE_COMPONENT::renderPreview( LIB_PART* aComponent, int aUnit ) wxPoint offset = -bBox.Centre(); auto opts = PART_DRAW_OPTIONS::Default(); + opts.draw_hidden_fields = false; aComponent->Draw( NULL, &dc, offset, aUnit, m_deMorganConvert, opts ); }