diff options
author | sr55 <[email protected]> | 2011-02-19 19:14:12 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2011-02-19 19:14:12 +0000 |
commit | cc3e6f976310bcc72b31f4011edb7270e885e6b4 (patch) | |
tree | 17b961f02aadfbf2e71a8f3e6b7960b58c3ba1d7 /win/C#/Functions/Main.cs | |
parent | 0b8918fb48eca14c002657942b199b706fc8959d (diff) |
WinGui:
- Give more control over MP4 file extensions. (Automatic, Always use MP4, Always use M4v)
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3801 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/Functions/Main.cs')
-rw-r--r-- | win/C#/Functions/Main.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/C#/Functions/Main.cs b/win/C#/Functions/Main.cs index 578d2e8b0..3b1e54631 100644 --- a/win/C#/Functions/Main.cs +++ b/win/C#/Functions/Main.cs @@ -240,7 +240,7 @@ namespace Handbrake.Functions // Add the appropriate file extension
if (mainWindow.drop_format.SelectedIndex == 0)
{
- destinationFilename += Properties.Settings.Default.useM4v || mainWindow.Check_ChapterMarkers.Checked ||
+ destinationFilename += Properties.Settings.Default.useM4v == 0 || Properties.Settings.Default.useM4v == 2 || mainWindow.Check_ChapterMarkers.Checked ||
mainWindow.AudioSettings.RequiresM4V() || mainWindow.Subtitles.RequiresM4V()
? ".m4v"
: ".mp4";
|