OSDN Git Service

LinGui: fix a stupid error in calculating picture scaling
authorjstebbins <jstebbins@b64f7644-9d1e-0410-96f1-a4d463321fa5>
Wed, 29 Oct 2008 16:07:48 +0000 (16:07 +0000)
committerjstebbins <jstebbins@b64f7644-9d1e-0410-96f1-a4d463321fa5>
Wed, 29 Oct 2008 16:07:48 +0000 (16:07 +0000)
git-svn-id: svn://localhost/HandBrake/trunk@1878 b64f7644-9d1e-0410-96f1-a4d463321fa5

gtk/src/hb-backend.c

index c5a816e..8873224 100644 (file)
@@ -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
        {