summaryrefslogtreecommitdiffstats
path: root/gtk
diff options
context:
space:
mode:
authorjstebbins <[email protected]>2009-06-05 16:34:33 +0000
committerjstebbins <[email protected]>2009-06-05 16:34:33 +0000
commitdfaa966ad3ef68c86db85eb47cddd7eec4a817a4 (patch)
treee4451bd7b0e238f9cc230aa4ccac56d8156616b4 /gtk
parent65cb895b41176c6c06558a5fd52a6f2657c65ad2 (diff)
LinGui: fix a problem in validation of the subtitle list while setting up job
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2486 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'gtk')
-rw-r--r--gtk/src/hb-backend.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/src/hb-backend.c b/gtk/src/hb-backend.c
index 22ea2efbc..7bb9d8e93 100644
--- a/gtk/src/hb-backend.c
+++ b/gtk/src/hb-backend.c
@@ -4021,7 +4021,7 @@ add_job(hb_handle_t *h, GValue *js, gint unique_id, gint titleindex)
// Skip any non-burned vobsubs when output is mp4
continue;
}
- else if (subt->format == PICTURESUB)
+ else if ( burned && subt->format == PICTURESUB )
{
// Only allow one subtitle to be burned into the video
if (one_burned)