1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-05-02 00:29:41 +02:00

Fix for bug 1153

bug 1153: Using Windows, with display of all items set to 125%, in the dialogs for select audio host,
select recording device, etc. the ok and cancel buttons had a very
small height, and their labels were very difficult to read.
This commit is contained in:
David Bailes 2015-08-20 10:14:03 +01:00
parent 1f6ba9160c
commit e416b1f373

View File

@ -802,11 +802,11 @@ void DeviceToolBar::ShowComboDialog(wxChoice *combo, const wxString &title)
&inputSources);
}
S.EndHorizontalLay();
S.AddStandardButtons();
}
S.EndVerticalLay();
S.AddStandardButtons();
dlg.SetSize(dlg.GetSizer()->GetMinSize());
dlg.GetSizer()->SetSizeHints(&dlg);
dlg.Center();
if (dlg.ShowModal() == wxID_OK)