FP Editor: remember to update appearance manager

Fixes https://gitlab.com/kicad/code/kicad/issues/6926
This commit is contained in:
Michael Kavanagh 2021-01-19 19:45:50 +00:00 committed by Jeff Young
parent 060635b14c
commit ef2aa8a730
2 changed files with 8 additions and 0 deletions

View File

@ -889,6 +889,12 @@ void FOOTPRINT_EDIT_FRAME::FocusOnLibID( const LIB_ID& aLibID )
}
void FOOTPRINT_EDIT_FRAME::OnDisplayOptionsChanged()
{
m_appearancePanel->UpdateDisplayOptions();
}
void FOOTPRINT_EDIT_FRAME::OnUpdateLayerAlpha( wxUpdateUIEvent & )
{
m_appearancePanel->OnLayerAlphaChanged();

View File

@ -264,6 +264,8 @@ public:
///> @copydoc PCB_BASE_FRAME::OnUpdateLayerAlpha()
void OnUpdateLayerAlpha( wxUpdateUIEvent& aEvent ) override;
void OnDisplayOptionsChanged() override;
///> @copydoc EDA_DRAW_FRAME::UseGalCanvas()
void ActivateGalCanvas() override;