diff options
author | jstebbins <[email protected]> | 2008-11-06 22:30:11 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2008-11-06 22:30:11 +0000 |
commit | b944434095075cdd410b7515992b8d730b394d6f (patch) | |
tree | 7cc397317320dec6ebf485f20b19677fdeb56193 /gtk/src/hb-backend.c | |
parent | c0a30f0be5aa54e8b19e04fb560e907319339a2f (diff) |
LinGui: fix start chapter range. allowed entry of chapter numbers beyond
the number of chapters on the disc
Fix a problem with picture scaling. non-anamorphic was allowing dimensions to
be entered that were larger than the title dims.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1899 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'gtk/src/hb-backend.c')
-rw-r--r-- | gtk/src/hb-backend.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gtk/src/hb-backend.c b/gtk/src/hb-backend.c index 6d5bf91ba..3bc95e3ba 100644 --- a/gtk/src/hb-backend.c +++ b/gtk/src/hb-backend.c @@ -2388,12 +2388,13 @@ ghb_set_scale(signal_user_data_t *ud, gint mode) // Height and width are always multiples of 2, so do the rounding new_height = ((new_height + 1) >> 1) << 1; new_width = ((new_width + 1) >> 1) << 1; - g_debug("max w %d, new w %d\n", max_width, new_width); - if (max_width && (new_width > max_width)) + if ((max_width && new_width > max_width) || + new_width > title->width) { height = new_height; } - else if (max_height && (new_height > max_height)) + else if ((max_height && new_height > max_height) || + new_height > title->height) { width = new_width; } |