From 7dc1966a0d491fb95632131c37e20466aa8c7c43 Mon Sep 17 00:00:00 2001 From: PJM Date: Tue, 29 Sep 2020 00:31:13 -0700 Subject: [PATCH] Eeschema: Fix text formatting in "Project Load Warning" dialog CHANGED: When the "Show Details" button on the "Project Load Warning" dialog is clicked, it reveals text that has odd formatting of when lines split. This commit fixes the text for the dialogs that warn that schematics will be saved in the new file format, and that Symbol Libraries defined in the project file symbol library list are no longer supported. --- eeschema/files-io.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eeschema/files-io.cpp b/eeschema/files-io.cpp index 7341efa48c..bac4555495 100644 --- a/eeschema/files-io.cpp +++ b/eeschema/files-io.cpp @@ -432,7 +432,7 @@ bool SCH_EDIT_FRAME::OpenProjectFiles( const std::vector& aFileSet, in wxOK | wxCENTER | wxICON_EXCLAMATION ); invalidLibDlg.ShowDetailedText( _( "Symbol libraries defined in the project file symbol library " - "list are no longer supported and will be\nremoved. This may " + "list are no longer supported and will be removed.\n\nThis may " "cause broken symbol library links under certain conditions." ) ); invalidLibDlg.ShowCheckBox( _( "Do not show this dialog again." ) ); invalidLibDlg.ShowModal(); @@ -464,7 +464,7 @@ bool SCH_EDIT_FRAME::OpenProjectFiles( const std::vector& aFileSet, in wxOK | wxCENTER | wxICON_EXCLAMATION ); newFileFormatDlg.ShowDetailedText( _( "This schematic was saved in the legacy file format which is no " - "longer supported and will be saved\nusing the new file format. The " + "longer supported and will be saved using the new file format.\n\nThe " "new file format cannot be opened with previous versions of KiCad." ) ); newFileFormatDlg.ShowCheckBox( _( "Do not show this dialog again." ) ); newFileFormatDlg.ShowModal();