Show selection before opening menu.

Fixes https://gitlab.com/kicad/code/kicad/-/issues/15922
This commit is contained in:
Jeff Young 2023-11-03 12:24:35 +00:00
parent a6f9174c0c
commit 141b953d12
1 changed files with 3 additions and 0 deletions

View File

@ -334,6 +334,9 @@ int PCB_SELECTION_TOOL::Main( const TOOL_EVENT& aEvent )
m_selection.SetIsHover( true );
}
// Show selection before opening menu
m_frame->GetCanvas()->ForceRefresh();
if( !selectionCancelled )
m_menu.ShowContextMenu( m_selection );
}