From: John Stebbins Date: Sat, 17 Mar 2018 00:30:02 +0000 (-0600) Subject: LinGui: fix problem with application of autoscale X-Git-Tag: 1.1.0~18 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6fe6a8e25c6962e212e7cbce3f7334413d89c686;p=handbrake LinGui: fix problem with application of autoscale Fixes https://github.com/HandBrake/HandBrake/issues/1146 --- diff --git a/gtk/src/presets.c b/gtk/src/presets.c index 32e9782de..065a8383c 100644 --- a/gtk/src/presets.c +++ b/gtk/src/presets.c @@ -265,6 +265,8 @@ ghb_preset_to_settings(GhbValue *settings, GhbValue *preset) autoscale = uses_pic != 1 || (width == 0 && height == 0); ghb_dict_set_bool(settings, "autoscale", autoscale); + ghb_dict_set_int(settings, "PictureWidthEnable", !autoscale); + ghb_dict_set_int(settings, "PictureHeightEnable", !autoscale); gint vqtype;