Run properties action from double-click in SCH search pane.

Fixes https://gitlab.com/kicad/code/kicad/-/issues/16013
This commit is contained in:
Jeff Young 2023-11-03 18:54:17 +00:00
parent f7d899a0fb
commit 97185ba90c
1 changed files with 2 additions and 0 deletions

View File

@ -34,6 +34,8 @@ void SCH_SEARCH_HANDLER::ActivateItem( long aItemRow )
{ {
std::vector<long> item = { aItemRow }; std::vector<long> item = { aItemRow };
SelectItems( item ); SelectItems( item );
m_frame->GetToolManager()->RunAction( EE_ACTIONS::properties, true );
} }