1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-07-25 17:08:07 +02:00

Fixes the inability to move the slider under wxGTK.

This commit is contained in:
lllucius 2011-03-14 02:26:00 +00:00
parent 6b6b495021
commit e442c5236c

@ -232,14 +232,14 @@ void ExportFFmpegAACOptions::PopulateOrExchange(ShuttleGui & S)
{
S.StartStatic(_("AAC Export Setup"), 1);
{
S.StartTwoColumn();
S.StartMultiColumn(2, wxEXPAND);
{
S.SetStretchyCol(1);
S.TieSlider(_("Quality:"),wxT("/FileFormats/AACQuality"),100,500,10);
}
S.EndTwoColumn();
S.EndMultiColumn();
}
S.EndStatic();
S.AddStandardButtons();
Layout();