diff options
author | jstebbins <[email protected]> | 2008-10-29 16:07:48 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2008-10-29 16:07:48 +0000 |
commit | bc3633cc5801d61f1c335093b7a61e893ba66528 (patch) | |
tree | 0a77f9a5c28e768d313fe9d3f087f3526056a8fc /gtk | |
parent | b90aab7f8161fe5228ce80f15c6cff6f04a34146 (diff) |
LinGui: fix a stupid error in calculating picture scaling
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1878 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'gtk')
-rw-r--r-- | gtk/src/hb-backend.c | 4 |
1 files changed, 2 insertions, 2 deletions
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 { |