Symbol editor: ensure the left panel is correctly refreshed when hiding a pane.

This commit is contained in:
jean-pierre charras 2024-06-11 17:48:25 +02:00
parent d865bda4f2
commit 2a37580839
2 changed files with 3 additions and 1 deletions

View File

@ -713,6 +713,7 @@ void SYMBOL_EDIT_FRAME::ToggleLibraryTree()
treePane.Show( !IsLibraryTreeShown() ); treePane.Show( !IsLibraryTreeShown() );
updateSelectionFilterVisbility(); updateSelectionFilterVisbility();
m_auimgr.Update(); m_auimgr.Update();
Refresh();
} }

View File

@ -3,7 +3,7 @@
* *
* Copyright (C) 2004 Jean-Pierre Charras, jaen-pierre.charras@gipsa-lab.inpg.com * Copyright (C) 2004 Jean-Pierre Charras, jaen-pierre.charras@gipsa-lab.inpg.com
* Copyright (C) 2008 Wayne Stambaugh <stambaughw@gmail.com> * Copyright (C) 2008 Wayne Stambaugh <stambaughw@gmail.com>
* Copyright (C) 2004-2022 KiCad Developers, see AUTHORS.txt for contributors. * Copyright (C) 2004-2024 KiCad Developers, see AUTHORS.txt for contributors.
* *
* This program is free software; you can redistribute it and/or * This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License * modify it under the terms of the GNU General Public License
@ -209,4 +209,5 @@ void SYMBOL_EDIT_FRAME::ToggleProperties()
} }
m_auimgr.Update(); m_auimgr.Update();
Refresh();
} }