1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-06-24 16:20:05 +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

View File

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