mirror of
https://github.com/cookiengineer/audacity
synced 2025-05-04 17:49:45 +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{
|
||||
public:
|
||||
TitleRestorer(AudacityProject * p ){
|
||||
if( p->IsIconized() )
|
||||
p->Restore();
|
||||
p->Raise(); // May help identifying the window on Mac
|
||||
|
||||
// Construct this projects name and number.
|
||||
sProjNumber = "";
|
||||
sProjName = p->GetName();
|
||||
|
Loading…
x
Reference in New Issue
Block a user