diff options
author | sr55 <[email protected]> | 2011-05-10 19:13:55 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2011-05-10 19:13:55 +0000 |
commit | e710acff9681ba85b7bddf65d001bc0444d4a69d (patch) | |
tree | 708dae255a91a21f5dcd8460fdef3f50e4fcc285 /win/CS | |
parent | c9515e922e6061b16f7edd3559be69aeacba51d9 (diff) |
WinGui:
- Set defaults for the Encode and Bitrate dropdown control on the Audio Panel. Seemed to be an exception
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3978 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS')
-rw-r--r-- | win/CS/Controls/AudioPanel.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/win/CS/Controls/AudioPanel.cs b/win/CS/Controls/AudioPanel.cs index b946163fe..bd44de646 100644 --- a/win/CS/Controls/AudioPanel.cs +++ b/win/CS/Controls/AudioPanel.cs @@ -51,7 +51,9 @@ namespace Handbrake.Controls drp_audioMix.SelectedItem = "Dolby Pro Logic II";
drp_audioSample.SelectedIndex = 1;
-
+ drp_audioBitrate.SelectedItem = "160";
+ drp_audioEncoder.SelectedItem = "AAC (faac)";
+
drp_audioTrack.DataSource = this.ScannedTracks;
}
|