summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrakeWPF/ViewModels
diff options
context:
space:
mode:
authorsr55 <[email protected]>2012-06-06 00:28:09 +0000
committersr55 <[email protected]>2012-06-06 00:28:09 +0000
commit20f490e516f71ec88fd29dd6a7cb5404d52e8ab9 (patch)
tree59f61d87d30a01459ee5076a7cf6170d2699701a /win/CS/HandBrakeWPF/ViewModels
parent405e3063a73d59b041871ec20400be58412c1ce9 (diff)
WinGui: Allow Modulus with Anamorphic Mode None. Tweaks to Destination filename property.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4712 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrakeWPF/ViewModels')
-rw-r--r--win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs6
-rw-r--r--win/CS/HandBrakeWPF/ViewModels/PictureSettingsViewModel.cs2
2 files changed, 4 insertions, 4 deletions
diff --git a/win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs
index 5bc79dec7..061a1e148 100644
--- a/win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs
+++ b/win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs
@@ -895,7 +895,7 @@ namespace HandBrakeWPF.ViewModels
QueueTask task = new QueueTask
{
Task = new EncodeTask(this.CurrentTask),
- Query = QueryGeneratorUtility.GenerateQuery(this.CurrentTask)
+ Query = QueryGeneratorUtility.GenerateQuery(new EncodeTask(this.CurrentTask))
};
this.queueProcessor.QueueManager.Add(task);
@@ -1044,8 +1044,8 @@ namespace HandBrakeWPF.ViewModels
// Create the Queue Task and Start Processing
QueueTask task = new QueueTask(null)
{
- Task = this.CurrentTask,
- Query = QueryGeneratorUtility.GenerateQuery(this.CurrentTask),
+ Task = new EncodeTask(this.CurrentTask),
+ Query = QueryGeneratorUtility.GenerateQuery(new EncodeTask(this.CurrentTask)),
CustomQuery = false
};
this.queueProcessor.QueueManager.Add(task);
diff --git a/win/CS/HandBrakeWPF/ViewModels/PictureSettingsViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/PictureSettingsViewModel.cs
index f5612df2e..eff48d0e5 100644
--- a/win/CS/HandBrakeWPF/ViewModels/PictureSettingsViewModel.cs
+++ b/win/CS/HandBrakeWPF/ViewModels/PictureSettingsViewModel.cs
@@ -633,7 +633,7 @@ namespace HandBrakeWPF.ViewModels
this.WidthControlEnabled = true;
this.HeightControlEnabled = true;
this.ShowCustomAnamorphicControls = false;
- this.ShowModulus = false;
+ this.ShowModulus = true;
this.ShowDisplaySize = false;
this.SelectedModulus = 16; // Reset
this.Width = this.sourceResolution.Width;