1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-11-23 09:20:16 +01:00

Bug 2631 - Silent crash during "discard selected" processing from Recovery dialog.

This commit is contained in:
Leland Lucius
2021-01-14 21:30:10 -06:00
parent 9e53df0c47
commit 8aaecdc596

View File

@@ -1123,8 +1123,15 @@ void ToolManager::Expose( int type, bool show )
void ToolManager::LayoutToolBars()
{
// Update the layout
mTopDock->LayoutToolBars();
mBotDock->LayoutToolBars();
if (mTopDock)
{
mTopDock->LayoutToolBars();
}
if (mBotDock)
{
mBotDock->LayoutToolBars();
}
}
//