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
This commit is contained in:
John Beard 2024-05-16 21:36:20 +08:00
parent c3e7509823
commit 44b0ef64e8
1 changed files with 0 additions and 1 deletions

View File

@ -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(); }