diff --git a/eeschema/netform.cpp b/eeschema/netform.cpp index ce8e78d95f..501a7fdcb2 100644 --- a/eeschema/netform.cpp +++ b/eeschema/netform.cpp @@ -424,7 +424,7 @@ bool SCH_EDIT_FRAME::WriteNetListFile( int aFormat, const wxString& aFullFileNam // build full command line from user's format string, e.g.: // "xsltproc -o %O /usr/local/lib/kicad/plugins/netlist_form_pads-pcb.xsl %I" // becomes, after the user selects /tmp/s1.net as the output file from the file dialog: - // "xsltproc -o /tmp/s1.net /usr/local/lib/kicad/plugins/netlist_form_pads-pcb.xsl /tmp/s1.tmp" + // "xsltproc -o /tmp/s1.net /usr/local/lib/kicad/plugins/netlist_form_pads-pcb.xsl /tmp/s1.xml" wxString commandLine = EXPORT_HELP::MakeCommandLine( m_netListerCommand, tmpFile.GetFullPath(), aFullFileName ); diff --git a/pcbnew/class_module.cpp b/pcbnew/class_module.cpp index 78b1c65486..9715d74a4e 100644 --- a/pcbnew/class_module.cpp +++ b/pcbnew/class_module.cpp @@ -258,6 +258,12 @@ void MODULE::Draw( EDA_DRAW_PANEL* aPanel, wxDC* aDC, int aDrawMode, const wxPoi break; } } + + // Enable these line to draw m_BoundaryBox (debug tests purposes only) +#if 0 + GRRect( &aPanel->m_ClipBox, aDC, m_BoundaryBox, 0, BROWN ); +#endif + } @@ -689,7 +695,7 @@ EDA_RECT MODULE::GetFootPrintRect() const area.m_Pos = m_Pos; area.SetEnd( m_Pos ); - area.Inflate( 500 ); // Give a min size + area.Inflate( 50 ); // Give a min size for( EDGE_MODULE* edge = (EDGE_MODULE*) m_Drawings.GetFirst(); edge; edge = edge->Next() ) if( edge->Type() == PCB_MODULE_EDGE_T )