From 9abad0063e5a828974686c9c41630e37265ad102 Mon Sep 17 00:00:00 2001 From: Wayne Stambaugh Date: Wed, 18 Dec 2013 11:36:07 -0500 Subject: [PATCH] CvPcb: reload footprint list when footprint library table is changed. (fixes lp:1261911) --- cvpcb/cvframe.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cvpcb/cvframe.cpp b/cvpcb/cvframe.cpp index 358dad7c55..f8cf599338 100644 --- a/cvpcb/cvframe.cpp +++ b/cvpcb/cvframe.cpp @@ -548,7 +548,10 @@ void CVPCB_MAINFRAME::OnEditFootprintLibraryTable( wxCommandEvent& aEvent ) } if( tableChanged ) + { BuildLIBRARY_LISTBOX(); + m_footprints.ReadFootprintFiles( m_footprintLibTable ); + } }