mirror of
https://github.com/cookiengineer/audacity
synced 2025-06-17 16:40:07 +02:00
Bug 322 - (Residual) Deal with iconized windows.
This commit is contained in:
parent
83e355dc65
commit
1c00e18a5d
@ -2364,6 +2364,10 @@ void AudacityProject::OnMouseEvent(wxMouseEvent & event)
|
|||||||
class TitleRestorer{
|
class TitleRestorer{
|
||||||
public:
|
public:
|
||||||
TitleRestorer(AudacityProject * p ){
|
TitleRestorer(AudacityProject * p ){
|
||||||
|
if( p->IsIconized() )
|
||||||
|
p->Restore();
|
||||||
|
p->Raise(); // May help identifying the window on Mac
|
||||||
|
|
||||||
// Construct this projects name and number.
|
// Construct this projects name and number.
|
||||||
sProjNumber = "";
|
sProjNumber = "";
|
||||||
sProjName = p->GetName();
|
sProjName = p->GetName();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user