From 66b3b48e93388f80c41929cd241f237f8f5a3fed Mon Sep 17 00:00:00 2001 From: Mike Williams Date: Wed, 22 Jun 2022 09:17:44 -0400 Subject: [PATCH] Library Editor: Fix missing automatic annotation Fixes: https://gitlab.com/kicad/code/kicad/-/issues/11818 --- eeschema/tools/sch_drawing_tools.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/eeschema/tools/sch_drawing_tools.cpp b/eeschema/tools/sch_drawing_tools.cpp index cfc2767f0f..74324bd3fb 100644 --- a/eeschema/tools/sch_drawing_tools.cpp +++ b/eeschema/tools/sch_drawing_tools.cpp @@ -193,6 +193,7 @@ int SCH_DRAWING_TOOLS::PlaceSymbol( const TOOL_EVENT& aEvent ) if( symbol ) { addSymbol( symbol ); + annotate(); getViewControls()->WarpMouseCursor( getViewControls()->GetMousePosition( false )); } else if( aEvent.HasPosition() )