From 9810236314f13c2ae0f9d61fc3217a4a7157e142 Mon Sep 17 00:00:00 2001 From: Maciej Suminski Date: Fri, 27 May 2016 14:56:09 -0400 Subject: [PATCH] Mark locked tracks with 'L' letter in status field. --- pcbnew/class_track.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcbnew/class_track.cpp b/pcbnew/class_track.cpp index 5bd1316438..ff3c55d33c 100644 --- a/pcbnew/class_track.cpp +++ b/pcbnew/class_track.cpp @@ -1138,7 +1138,7 @@ void TRACK::GetMsgPanelInfoBase_Common( std::vector< MSG_PANEL_ITEM >& aList ) msg = wxT( ". . " ); if( GetState( TRACK_LOCKED ) ) - msg[0] = 'F'; + msg[0] = 'L'; if( GetState( TRACK_AR ) ) msg[2] = 'A';