Symbol Fields Table: menu shortcut should start in edit tab

The BOM shortcut goes to Export, this makes them symmetrical.
This commit is contained in:
Mike Williams 2023-09-20 14:54:14 -04:00
parent e1d7d1bca7
commit cb115189f6
2 changed files with 3 additions and 0 deletions

View File

@ -48,6 +48,7 @@ public:
bool TransferDataToWindow() override;
bool TransferDataFromWindow() override;
void ShowEditTab();
void ShowExportTab();
private:

View File

@ -2062,6 +2062,8 @@ int SCH_EDITOR_CONTROL::EditSymbolFields( const TOOL_EVENT& aEvent )
// Bring it to the top if already open. Dual monitor users need this.
dlg->Raise();
dlg->ShowEditTab();
return 0;
}