1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-07-17 17:17:40 +02:00

Bug 383 - Screenshot Tools doesn't checkmark re-opened Toolbars bars in View Menu

The underlying problem was related to resetting the toolbars when Screenshot tools were opened.  That's now no longer done.
This commit is contained in:
James Crook 2017-06-22 16:38:50 +01:00
parent e37c337af8
commit 88cafa7a89

View File

@ -267,7 +267,9 @@ ScreenFrame::ScreenFrame(wxWindow * parent, wxWindowID id)
// Note that the audio could be playing.
// The monitoring will switch off temporarily
// because we've switched monitor mid play.
mContext.GetProject()->GetToolManager()->Reset();
// Bug 383 - Resetting the toolbars is not wanted.
// Any that are invisible will be amde visible as/when needed.
//mContext.GetProject()->GetToolManager()->Reset();
Center();
}