Fully freeze tree GUI

This is the v5 analog of 0d6684bdf

Fixes https://gitlab.com/kicad/code/kicad/issues/6102
This commit is contained in:
Seth Hillbrand 2020-10-23 12:24:14 -07:00
parent 386f827d38
commit 222d44a8d8
1 changed files with 2 additions and 0 deletions

View File

@ -413,6 +413,7 @@ void LIB_EDIT_FRAME::OnToggleSearchTree( wxCommandEvent& event )
void LIB_EDIT_FRAME::FreezeSearchTree()
{
m_treePane->Freeze();
m_libMgr->GetAdapter()->Freeze();
}
@ -420,6 +421,7 @@ void LIB_EDIT_FRAME::FreezeSearchTree()
void LIB_EDIT_FRAME::ThawSearchTree()
{
m_libMgr->GetAdapter()->Thaw();
m_treePane->Thaw();
}