Fix template selector notebook behaviour

Also replace "validate" button with standard refresh icon button.

Fixes: lp:1773510
https://bugs.launchpad.net/kicad/+bug/1773510
This commit is contained in:
Michael 2019-03-03 20:12:18 +00:00 committed by Seth Hillbrand
parent de706635cc
commit c3928c21eb
1 changed files with 2 additions and 0 deletions

View File

@ -114,6 +114,8 @@ void DIALOG_TEMPLATE_SELECTOR::OnPageChange( wxNotebookEvent& event )
if( page != wxNOT_FOUND && (unsigned)page < m_panels.size() ) if( page != wxNOT_FOUND && (unsigned)page < m_panels.size() )
m_tcTemplatePath->SetValue( m_panels[page]->GetPath() ); m_tcTemplatePath->SetValue( m_panels[page]->GetPath() );
event.Skip();
} }