From d40faf836e27dd45653ebd92763a3978ca64311a Mon Sep 17 00:00:00 2001 From: Jeff Glass Date: Mon, 12 Oct 2020 10:39:08 -0500 Subject: [PATCH] pcbnew: Fixing misleading "Rescue Layer" message Change wording of Undefined Layers dialog to indicate that rescued layers will be denoted 'User.Comments' rather than the deprecated 'Cmts.User' Fixes https://gitlab.com/kicad/code/kicad/-/issues/5967 --- pcbnew/pcb_parser.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcbnew/pcb_parser.cpp b/pcbnew/pcb_parser.cpp index 8aa4c26889..c677529b61 100644 --- a/pcbnew/pcb_parser.cpp +++ b/pcbnew/pcb_parser.cpp @@ -650,7 +650,7 @@ BOARD* PCB_PARSER::parseBOARD_unchecked() bool deleteItems; std::vector deleteList; wxString msg = wxString::Format( _( "Items found on undefined layers. Do you wish to\n" - "rescue them to the Cmts.User layer?" ) ); + "rescue them to the User.Comments layer?" ) ); wxString details = wxString::Format( _( "Undefined layers:" ) ); for( const wxString& undefinedLayer : m_undefinedLayers )