the ui widgets were just being set to 0 till a title was loaded.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3404
b64f7644-9d1e-0410-96f1-
a4d463321fa5
dd = ghb_value_boolean(val);
ghb_ui_update(ud, "PictureDeinterlaceDecomb", ghb_boolean_value(!dd));
}
+ val = ghb_dict_lookup(dict, "PictureHeight");
+ if (val != NULL)
+ {
+ ghb_ui_update(ud, "scale_height", val);
+ }
+ val = ghb_dict_lookup(dict, "PictureWidth");
+ if (val != NULL)
+ {
+ ghb_ui_update(ud, "scale_width", val);
+ }
}
}