Fix event/flag race condition.

This commit is contained in:
Jeff Young 2023-12-17 21:55:15 +00:00
parent 08a00633b1
commit 16c8050f3d
1 changed files with 5 additions and 4 deletions

View File

@ -229,15 +229,16 @@ int EDIT_TOOL::Move( const TOOL_EVENT& aEvent )
BOARD_COMMIT localCommit( this );
if( doMoveSelection( aEvent, &localCommit ) )
{
localCommit.Push( _( "Move" ) );
}
else
{
localCommit.Revert();
}
}
// Notify point editor. (While doMoveSelection() will re-select the items and post this
// event, it's done before the edit flags are cleared in BOARD_COMMIT::Push() so the point
// editor doesn't fire up.)
m_toolMgr->ProcessEvent( EVENTS::SelectedEvent );
return 0;
}