diff options
author | sr55 <[email protected]> | 2008-02-20 16:36:09 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2008-02-20 16:36:09 +0000 |
commit | db588e3c6ffd1decde4e45d742a6755df7e685ee (patch) | |
tree | 813bb16f235c5705e8593d3b095117f8ceaf4ee3 /win/C#/frmMain.cs | |
parent | 0b34ab90692e23dfc5f41cbcf312d51549d348d3 (diff) |
WinGui: minor bug fixes.
- Queue window now allows selection of queued items on the whole panel, not just the left side of the panel.
- Fixed a few rouge extensions not getting changed correctly when selecting a preset. (may need to revisit this for psp preset)
- When using AAC+AC3 use m4v if mp4 is currently on the extension.
- Fixed the user defaults not setting video / audio encode properly.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1305 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/frmMain.cs')
-rw-r--r-- | win/C#/frmMain.cs | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/win/C#/frmMain.cs b/win/C#/frmMain.cs index 07eac66cd..034a8a9d5 100644 --- a/win/C#/frmMain.cs +++ b/win/C#/frmMain.cs @@ -73,6 +73,9 @@ namespace Handbrake }
// Load the presets
+ // Set some defaults for the dropdown menus. Just incase the normal or user presets dont load.
+ drp_crop.SelectedIndex = 0;
+
lblStatus.Text = "Loading Presets ...";
Application.DoEvents();
if (Properties.Settings.Default.updatePresets == "Checked")
@@ -102,11 +105,6 @@ namespace Handbrake Thread.Sleep(100);
}
- // Set some defaults for the dropdown menus. Just incase the normal or user presets dont load.
- drp_crop.SelectedIndex = 0;
- drp_videoEncoder.SelectedIndex = 2;
- drp_audioCodec.SelectedIndex = 0;
-
//Finished Loading
lblStatus.Text = "Loading Complete!";
Application.DoEvents();
@@ -790,6 +788,7 @@ namespace Handbrake {
drp_audioMixDown.Enabled = false;
drp_audioMixDown.Text = "Automatic";
+ text_destination.Text.Replace(".mp4", ".m4v");
}
else
{
|