From bc3633cc5801d61f1c335093b7a61e893ba66528 Mon Sep 17 00:00:00 2001 From: jstebbins Date: Wed, 29 Oct 2008 16:07:48 +0000 Subject: LinGui: fix a stupid error in calculating picture scaling git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1878 b64f7644-9d1e-0410-96f1-a4d463321fa5 --- gtk/src/hb-backend.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gtk') diff --git a/gtk/src/hb-backend.c b/gtk/src/hb-backend.c index c5a816ef7..8873224d1 100644 --- a/gtk/src/hb-backend.c +++ b/gtk/src/hb-backend.c @@ -2323,8 +2323,8 @@ ghb_set_scale(signal_user_data_t *ud, gint mode) { width = crop_width; height = crop_height; - max_width = crop_width; - max_height = crop_height; + max_width = 0; //crop_width; + max_height = 0; //crop_height; } else { -- cgit v1.2.3