Browse Source

No longer auto-set the Footprint field when setting the FPID

This avoids forcing the field to the footprint name in the
library editor, which gets in the way. This doesn't specifically
inhibit the use of the field, and doesn't interfere with fields
users may have set manually (it can be cleared manually if
wished).

Removing the footprint field entirely either from all footprints
or from footprints in fpedit is quite a bit more invasive to
existing designs.

Relates-To: https://gitlab.com/kicad/code/kicad/-/issues/17998
8.0
John Beard 2 years ago
parent
commit
44b0ef64e8
  1. 1
      pcbnew/footprint.h

1
pcbnew/footprint.h

@ -231,7 +231,6 @@ public:
void SetFPID( const LIB_ID& aFPID )
{
m_fpid = aFPID;
Footprint().SetText( aFPID.Format() );
}
wxString GetFPIDAsString() const { return m_fpid.Format(); }

Loading…
Cancel
Save