Invoke correct base method in PCB_BASE_EDIT_FRAME::handleActivateEvent.

The base class of PCB_BASE_EDIT_FRAME is PCB_BASE_FRAME. Invoking
EDA_DRAW_FRAME::handleActivateEvent in the PCB_BASE_EDIT_FRAME override
will skip the definition in PCB_BASE_FRAME.
This commit is contained in:
markus-bonk 2021-10-25 14:02:00 +02:00 committed by Wayne Stambaugh
parent be58ab679b
commit 8e43409d27
1 changed files with 1 additions and 1 deletions

View File

@ -278,7 +278,7 @@ wxString PCB_BASE_EDIT_FRAME::GetDesignRulesPath()
void PCB_BASE_EDIT_FRAME::handleActivateEvent( wxActivateEvent& aEvent )
{
EDA_DRAW_FRAME::handleActivateEvent( aEvent );
PCB_BASE_FRAME::handleActivateEvent( aEvent );
// The text in the collapsible pane headers need to be updated
if( m_appearancePanel )