mirror of
https://github.com/cookiengineer/audacity
synced 2025-08-03 17:39:25 +02:00
Bug 2703 - Mac: EGAT preview dialog is hidden behind the EGAT dialog
This commit is contained in:
parent
895c527b6a
commit
7ad50cb0ca
@ -1159,6 +1159,11 @@ bool ProgressDialog::Create(const TranslatableString & title,
|
|||||||
|
|
||||||
wxWindow *parent =
|
wxWindow *parent =
|
||||||
#if defined(__WXMAC__),
|
#if defined(__WXMAC__),
|
||||||
|
// Bug 2703: In release builds, the progress dialog will fall behind
|
||||||
|
// the top level dialog (like effects dialogs). This does not happen
|
||||||
|
// in debug builds and I was not able to track down the reason. So,
|
||||||
|
// this is a workaround and should be reviewed as some point, like
|
||||||
|
// when upgrading to the next WX version.
|
||||||
GetParentForModalDialog(mHadFocus, 0);
|
GetParentForModalDialog(mHadFocus, 0);
|
||||||
#else
|
#else
|
||||||
GetParentForModalDialog(nullptr, 0);
|
GetParentForModalDialog(nullptr, 0);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user