1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-04-30 15:49:41 +02:00

Fix bug 2611

Mixer Board does not stay on top of main window
This commit is contained in:
SteveDaulton 2020-12-27 16:53:31 +00:00
parent 264f133964
commit 561504dc37

View File

@ -1413,12 +1413,7 @@ MixerBoardFrame::MixerBoardFrame(AudacityProject* parent)
wxString::Format(wxT(" - %s"),
parent->GetProjectName()))),
wxDefaultPosition, kDefaultSize,
//vvv Bug in wxFRAME_FLOAT_ON_PARENT:
// If both the project frame and MixerBoardFrame are minimized and you restore MixerBoardFrame,
// you can't restore project frame until you close MixerBoardFrame, but then project frame and
// MixerBoardFrame are restored but MixerBoardFrame is unresponsive because it thinks it's not shown.
// wxDEFAULT_FRAME_STYLE | wxFRAME_FLOAT_ON_PARENT)
wxDEFAULT_FRAME_STYLE)
wxDEFAULT_FRAME_STYLE | wxFRAME_FLOAT_ON_PARENT)
{
mMixerBoard = safenew MixerBoard(parent, this, wxDefaultPosition, kDefaultSize);