mirror of
https://github.com/cookiengineer/audacity
synced 2025-11-23 17:30:17 +01:00
Don't SetMinSize in ShuttleGui::StartNotebookPage...
... This could only affect the About dialog now, but does not have noticeable effects. StartNotebookPage will be reused for Export and Export Multiple dialogs, and the effects of this SetMinSize call would be undesirable for them.
This commit is contained in:
@@ -1016,7 +1016,6 @@ wxNotebookPage * ShuttleGuiBase::StartNotebookPage( const wxString & Name )
|
||||
mpParent = pPage;
|
||||
pPage->SetSizer(mpSizer = safenew wxBoxSizer(wxVERTICAL));
|
||||
PushSizer();
|
||||
mpSizer->SetMinSize(250, 500);
|
||||
// UpdateSizers();
|
||||
return pPage;
|
||||
}
|
||||
@@ -1039,7 +1038,6 @@ void ShuttleGuiBase::StartNotebookPage( const wxString & Name, wxNotebookPage *
|
||||
mpParent = pPage;
|
||||
pPage->SetSizer(mpSizer = safenew wxBoxSizer(wxVERTICAL));
|
||||
PushSizer();
|
||||
mpSizer->SetMinSize(250, 500);
|
||||
// UpdateSizers();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user