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:
parent
be58ab679b
commit
8e43409d27
|
@ -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 )
|
||||
|
|
Loading…
Reference in New Issue