Eeschema: fix BOM path bug in stand alone mode.

Fixes https://gitlab.com/kicad/code/kicad/-/issues/8180
This commit is contained in:
Wayne Stambaugh 2021-05-06 15:42:15 -04:00
parent 1b9a8564af
commit 5da8e700ce
1 changed files with 3 additions and 3 deletions

View File

@ -2,7 +2,7 @@
* This program source code file is part of KiCad, a free EDA CAD application. * This program source code file is part of KiCad, a free EDA CAD application.
* *
* Copyright (C) 2019 Jean-Pierre Charras, jp.charras at wanadoo.fr * Copyright (C) 2019 Jean-Pierre Charras, jp.charras at wanadoo.fr
* Copyright (C) 1992-2020 KiCad Developers, see AUTHORS.txt for contributors. * Copyright (C) 1992-2021 KiCad Developers, see AUTHORS.txt for contributors.
* *
* This program is free software; you can redistribute it and/or * This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License * modify it under the terms of the GNU General Public License
@ -85,7 +85,8 @@ private:
void pluginInit(); void pluginInit();
void installGeneratorsList(); void installGeneratorsList();
BOM_GENERATOR_HANDLER* addGenerator( const wxString& aPath, const wxString& aName = wxEmptyString ); BOM_GENERATOR_HANDLER* addGenerator( const wxString& aPath,
const wxString& aName = wxEmptyString );
bool pluginExists( const wxString& aName ); bool pluginExists( const wxString& aName );
BOM_GENERATOR_HANDLER* selectedGenerator() BOM_GENERATOR_HANDLER* selectedGenerator()
@ -326,7 +327,6 @@ void DIALOG_BOM::OnRunGenerator( wxCommandEvent& event )
// Calculate the xml netlist filename // Calculate the xml netlist filename
wxFileName fn = m_parent->Schematic().GetFileName(); wxFileName fn = m_parent->Schematic().GetFileName();
fn.SetPath( wxPathOnly( Prj().GetProjectFullName() ) );
fn.ClearExt(); fn.ClearExt();
wxString fullfilename = fn.GetFullPath(); wxString fullfilename = fn.GetFullPath();