Reset button applies to resolved page, not lazy page holder.
Fixes https://gitlab.com/kicad/code/kicad/-/issues/14786
This commit is contained in:
parent
7e51077992
commit
1057483983
|
@ -330,7 +330,7 @@ void PAGED_DIALOG::SetError( const wxString& aMessage, wxWindow* aPage, wxWindow
|
||||||
|
|
||||||
void PAGED_DIALOG::UpdateResetButton( int aPage )
|
void PAGED_DIALOG::UpdateResetButton( int aPage )
|
||||||
{
|
{
|
||||||
wxWindow* panel = m_treebook->GetPage( aPage );
|
wxWindow* panel = m_treebook->ResolvePage( aPage );
|
||||||
|
|
||||||
// Enable the reset button only if the page is re-settable
|
// Enable the reset button only if the page is re-settable
|
||||||
if( m_resetButton )
|
if( m_resetButton )
|
||||||
|
@ -454,7 +454,7 @@ void PAGED_DIALOG::onResetButton( wxCommandEvent& aEvent )
|
||||||
return;
|
return;
|
||||||
|
|
||||||
// NB: dynamic_cast doesn't work over Kiway
|
// NB: dynamic_cast doesn't work over Kiway
|
||||||
wxWindow* panel = m_treebook->GetPage( sel );
|
wxWindow* panel = m_treebook->ResolvePage( sel );
|
||||||
|
|
||||||
if( panel )
|
if( panel )
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue