From c3e3f3bcb83f92a7815acb9f74ae1847869418af Mon Sep 17 00:00:00 2001 From: Jeff Young Date: Fri, 19 Jan 2024 15:13:11 +0000 Subject: [PATCH] Possible fix for move individually. Fixes https://gitlab.com/kicad/code/kicad/-/issues/16087 --- pcbnew/tools/edit_tool_move_fct.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/pcbnew/tools/edit_tool_move_fct.cpp b/pcbnew/tools/edit_tool_move_fct.cpp index 446b77c368..201d83a09a 100644 --- a/pcbnew/tools/edit_tool_move_fct.cpp +++ b/pcbnew/tools/edit_tool_move_fct.cpp @@ -723,6 +723,7 @@ bool EDIT_TOOL::doMoveSelection( const TOOL_EVENT& aEvent, BOARD_COMMIT* aCommit if( isSkip ) orig_items[itemIdx]->SetPosition( originalPos ); + view()->Update( orig_items[itemIdx] ); rebuildConnectivity(); if( ++itemIdx < orig_items.size() )