From 0bc06d506c1741f0358ef9364c69aa7846803abe Mon Sep 17 00:00:00 2001 From: Jon Evans Date: Fri, 2 Dec 2022 21:40:21 -0500 Subject: [PATCH] Properties: reselect after canceled move --- pcbnew/tools/edit_tool_move_fct.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pcbnew/tools/edit_tool_move_fct.cpp b/pcbnew/tools/edit_tool_move_fct.cpp index 9bedc8ac55..22b446a18a 100644 --- a/pcbnew/tools/edit_tool_move_fct.cpp +++ b/pcbnew/tools/edit_tool_move_fct.cpp @@ -815,6 +815,9 @@ int EDIT_TOOL::doMoveSelection( const TOOL_EVENT& aEvent ) // reverted state. m_toolMgr->PostEvent( EVENTS::SelectedItemsMoved ); + // Property panel needs to know about the reselect + m_toolMgr->PostEvent( EVENTS::SelectedItemsModified ); + if( hasRedrawn3D ) editFrame->Update3DView( false, true ); }