7
mirror of https://gitlab.com/kicad/code/kicad.git synced 2025-04-04 23:05:30 +00:00

SCH_EDITOR_CONTROL::Paste() - Adjust refdes behavior to match when creating new symbols

Pass 'false' as aStartAtCurrent to ReannotateByOptions(). Causes Pasing() symbols to start at the first available refdes after the currently
configured annotate start number, m_annotateStartNum.

Fixes 
This commit is contained in:
Chris Morgan 2023-02-02 21:16:01 -05:00 committed by Mike Williams
parent 4065e413ea
commit e14f0848fa

View File

@ -1828,7 +1828,7 @@ int SCH_EDITOR_CONTROL::Paste( const TOOL_EVENT& aEvent )
annotatedSymbols[instance].ReannotateByOptions( (ANNOTATE_ORDER_T) annotate.sort_order,
(ANNOTATE_ALGO_T) annotate.method,
annotateStartNum, existingRefs,
true,
false,
&hierarchy );
annotatedSymbols[instance].UpdateAnnotation();