diff options
author | sr55 <[email protected]> | 2012-02-05 15:13:36 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2012-02-05 15:13:36 +0000 |
commit | 3036d09839b774caba47f4a325f83adac7ba1b02 (patch) | |
tree | cab7e7ccf6d736ac5ebfca8031101d388f453861 /win/CS/HandBrake.ApplicationServices/Services | |
parent | 53e2efcc66a556b2e3b7788a2152d6ed9a033f1b (diff) |
WinGui: Fixes to the preset system and plist exporter. (Missing keys)
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4438 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrake.ApplicationServices/Services')
-rw-r--r-- | win/CS/HandBrake.ApplicationServices/Services/PresetService.cs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/win/CS/HandBrake.ApplicationServices/Services/PresetService.cs b/win/CS/HandBrake.ApplicationServices/Services/PresetService.cs index 55b8e9e25..33b872796 100644 --- a/win/CS/HandBrake.ApplicationServices/Services/PresetService.cs +++ b/win/CS/HandBrake.ApplicationServices/Services/PresetService.cs @@ -146,6 +146,9 @@ namespace HandBrake.ApplicationServices.Services {
preset.Query = update.Query;
preset.Task = update.Task;
+ preset.AudioPassthruSettings = update.AudioPassthruSettings;
+ preset.CropSettings = update.CropSettings;
+ preset.UsePictureFilters = update.UsePictureFilters;
// Update the presets file
this.UpdatePresetFiles();
|