From 1c9d8a9f4c009786f9fa58f78bf752e9dd2763b6 Mon Sep 17 00:00:00 2001 From: Seth Hillbrand Date: Fri, 8 Jan 2021 16:46:18 -0800 Subject: [PATCH] Don't warn on locked conversion --- pcbnew/tools/convert_tool.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/pcbnew/tools/convert_tool.cpp b/pcbnew/tools/convert_tool.cpp index c5cb1cb196..7cab902c28 100644 --- a/pcbnew/tools/convert_tool.cpp +++ b/pcbnew/tools/convert_tool.cpp @@ -418,8 +418,7 @@ int CONVERT_TOOL::PolyToLines( const TOOL_EVENT& aEvent ) aCollector.Remove( item ); } } - }, - true /* prompt user regarding locked items */ ); + } ); if( selection.Empty() ) return 0; @@ -594,8 +593,7 @@ int CONVERT_TOOL::SegmentToArc( const TOOL_EVENT& aEvent ) aCollector.Remove( item ); } } - }, - true /* prompt user regarding locked items */ ); + } ); EDA_ITEM* source = selection.Front(); VECTOR2I start, end, mid;