From: jstebbins Date: Thu, 1 Jan 2009 17:33:21 +0000 (+0000) Subject: LinGui: fix a problem with saving specific max-width/height to a preset. X-Git-Tag: 0.9.4~904 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=400acd49ab8e2f76e8f624cf75d37e6099de6ffd;p=handbrake 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 --- 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");