From a6776edc26a70f7096344933098b970930d533d2 Mon Sep 17 00:00:00 2001 From: Jon Evans Date: Sat, 11 Feb 2023 10:33:23 -0500 Subject: [PATCH] Try to resolve worksheet filename before saving it The new code was added to handle saving imported worksheets, but it is possible to specify relative paths to worksheets not only to the project folder but also to the global templates directories. Fixes https://gitlab.com/kicad/code/kicad/-/issues/13834 --- eeschema/eeschema_config.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/eeschema/eeschema_config.cpp b/eeschema/eeschema_config.cpp index c85f787124..3f80d2cd7e 100644 --- a/eeschema/eeschema_config.cpp +++ b/eeschema/eeschema_config.cpp @@ -139,7 +139,8 @@ void SCH_EDIT_FRAME::SaveProjectSettings() if( !BASE_SCREEN::m_DrawingSheetFileName.IsEmpty() ) { - wxFileName layoutfn( BASE_SCREEN::m_DrawingSheetFileName ); + wxFileName layoutfn( DS_DATA_MODEL::ResolvePath( BASE_SCREEN::m_DrawingSheetFileName, + Prj().GetProjectPath() ) ); bool success = true;