1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-07-27 06:07:59 +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.StartStatic(_("AAC Export Setup"), 1);
{ {
S.StartTwoColumn(); S.StartMultiColumn(2, wxEXPAND);
{ {
S.TieSlider(_("Quality:"),wxT("/FileFormats/AACQuality"),100,500,10); S.SetStretchyCol(1);
} S.TieSlider(_("Quality:"),wxT("/FileFormats/AACQuality"),100,500,10);
S.EndTwoColumn(); }
S.EndMultiColumn();
} }
S.EndStatic(); S.EndStatic();
S.AddStandardButtons(); S.AddStandardButtons();
Layout(); Layout();