From 921b6c826b590eb38bcc8a3fdc957b4b0d09d013 Mon Sep 17 00:00:00 2001 From: Jeff Young Date: Sun, 5 Sep 2021 20:13:20 +0100 Subject: [PATCH] Fix another disappearing string on Mac. --- pcbnew/files.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcbnew/files.cpp b/pcbnew/files.cpp index baee4fdd3c..a353cd73ad 100644 --- a/pcbnew/files.cpp +++ b/pcbnew/files.cpp @@ -1143,7 +1143,7 @@ bool PCB_EDIT_FRAME::SavePcbCopy( const wxString& aFileName, bool aCreateProject rulesFile.GetFullPath() ) ); } - DisplayInfoMessage( this, wxString::Format( _( "Board copied to:\n\"%s\"" ), + DisplayInfoMessage( this, wxString::Format( _( "Board copied to:\n%s" ), pcbFileName.GetFullPath() ) ); return true;