diff options
author | jstebbins <[email protected]> | 2008-10-26 21:01:38 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2008-10-26 21:01:38 +0000 |
commit | 654cecff6ec053e60432a56416ecdb823160925e (patch) | |
tree | ea25e17df4487c393652436084e2350489e272b4 /gtk/src | |
parent | e910250901430bd3dd358ae80843f29bf40b4bd3 (diff) |
LinGui: fix a problem with setting proper picture dimensions when title changed
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1869 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'gtk/src')
-rw-r--r-- | gtk/src/callbacks.c | 1 | ||||
-rw-r--r-- | gtk/src/hb-backend.c | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/gtk/src/callbacks.c b/gtk/src/callbacks.c index c0a7e6b18..df8d82996 100644 --- a/gtk/src/callbacks.c +++ b/gtk/src/callbacks.c @@ -976,6 +976,7 @@ show_title_info(signal_user_data_t *ud, ghb_title_info_t *tinfo) ghb_ui_update(ud, "PictureLeftCrop", ghb_int64_value(tinfo->crop[2])); ghb_ui_update(ud, "PictureRightCrop", ghb_int64_value(tinfo->crop[3])); } + ghb_set_scale (ud, GHB_SCALE_KEEP_NONE); gint width, height, crop[4]; crop[0] = ghb_settings_get_int(ud->settings, "PictureTopCrop"); crop[1] = ghb_settings_get_int(ud->settings, "PictureBottomCrop"); diff --git a/gtk/src/hb-backend.c b/gtk/src/hb-backend.c index e45ce65c0..c5a816ef7 100644 --- a/gtk/src/hb-backend.c +++ b/gtk/src/hb-backend.c @@ -2938,7 +2938,6 @@ ghb_add_job(GValue *js, gint unique_id) if( !hb_list_count( list ) ) { /* No valid title, stop right there */ - g_message("No title found.\n"); return; } |