summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsr55 <[email protected]>2012-03-20 19:49:31 +0000
committersr55 <[email protected]>2012-03-20 19:49:31 +0000
commitd905c15681c5baf06ebdfec8244aa3cd5a1e4585 (patch)
tree2d528d0618a4fc155847fd78fbc29af716a9d8c6
parentc780805c26416cf69b034d23179e47f44c8e88f1 (diff)
WinGui: Fix exception when adding to queue.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4522 b64f7644-9d1e-0410-96f1-a4d463321fa5
-rw-r--r--win/CS/HandBrake.ApplicationServices/Model/EncodeTask.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/win/CS/HandBrake.ApplicationServices/Model/EncodeTask.cs b/win/CS/HandBrake.ApplicationServices/Model/EncodeTask.cs
index 5294668d4..24161a27b 100644
--- a/win/CS/HandBrake.ApplicationServices/Model/EncodeTask.cs
+++ b/win/CS/HandBrake.ApplicationServices/Model/EncodeTask.cs
@@ -29,6 +29,7 @@ namespace HandBrake.ApplicationServices.Model
this.AudioTracks = new ObservableCollection<AudioTrack>();
this.SubtitleTracks = new ObservableCollection<SubtitleTrack>();
this.ChapterNames = new ObservableCollection<ChapterMarker>();
+ this.AllowedPassthruOptions = new AllowedPassthru();
this.x264Preset = x264Preset.None;
this.x264Profile = x264Profile.None;
this.X264Tune = x264Tune.None;