mirror of
https://github.com/cookiengineer/audacity
synced 2025-11-23 17:30:17 +01:00
Bug 2631 - Silent crash during "discard selected" processing from Recovery dialog.
This commit is contained in:
@@ -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();
|
||||
}
|
||||
}
|
||||
|
||||
//
|
||||
|
||||
Reference in New Issue
Block a user