Don't warn on locked conversion

This commit is contained in:
Seth Hillbrand 2021-01-08 16:46:18 -08:00
parent 0655f2c436
commit 1c9d8a9f4c
1 changed files with 2 additions and 4 deletions

View File

@ -418,8 +418,7 @@ int CONVERT_TOOL::PolyToLines( const TOOL_EVENT& aEvent )
aCollector.Remove( item ); aCollector.Remove( item );
} }
} }
}, } );
true /* prompt user regarding locked items */ );
if( selection.Empty() ) if( selection.Empty() )
return 0; return 0;
@ -594,8 +593,7 @@ int CONVERT_TOOL::SegmentToArc( const TOOL_EVENT& aEvent )
aCollector.Remove( item ); aCollector.Remove( item );
} }
} }
}, } );
true /* prompt user regarding locked items */ );
EDA_ITEM* source = selection.Front(); EDA_ITEM* source = selection.Front();
VECTOR2I start, end, mid; VECTOR2I start, end, mid;