diff options
author | jstebbins <[email protected]> | 2009-01-01 17:33:21 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2009-01-01 17:33:21 +0000 |
commit | 400acd49ab8e2f76e8f624cf75d37e6099de6ffd (patch) | |
tree | 31b258aa68f50d031701cd20d7f70f73d1402135 /gtk | |
parent | 382ca3aad89ad78b1c074ee0c272939dd80dc888 (diff) |
LinGui: fix a problem with saving specific max-width/height to a preset.
Legacy UsesMaxPictureSettings tag didn't get converted properly when
new preset is based on an old preset that used it.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2053 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'gtk')
-rw-r--r-- | gtk/src/presets.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gtk/src/presets.c b/gtk/src/presets.c index 8f38f7ea1..50fd61801 100644 --- a/gtk/src/presets.c +++ b/gtk/src/presets.c @@ -2287,6 +2287,7 @@ export_xlat_preset(GValue *dict) ghb_dict_insert(dict, g_strdup("VideoQualityType"), ghb_int_value_new(2)); } + ghb_dict_remove(dict, "UsesMaxPictureSettings"); ghb_dict_remove(dict, "autoscale"); ghb_dict_remove(dict, "anamorphic"); ghb_dict_remove(dict, "vquality_type_target"); |