diff options
author | jstebbins <[email protected]> | 2009-06-03 22:07:49 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2009-06-03 22:07:49 +0000 |
commit | 705ea262b0f53fd19df594dfc8026798cf001155 (patch) | |
tree | 30c8fa07c6bc3808f9081356eb7850e33519e9c9 /gtk/src/presets.c | |
parent | fa937f5aab19995d36ffbb59eb017d9428a5037f (diff) |
softsubs:
- add ability to have 1 source subtitle feed many output subtitles
use hb_subtitle_add() to add output tracks.
example use case:
you want forced subtitles from a source track on one output track and
the entire subtitle stream from the same source track on a second
output track
- LinGui: make subtitle tab resemble functionality of the audio tab
any track can be added multiple times with different settings.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2476 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'gtk/src/presets.c')
-rw-r--r-- | gtk/src/presets.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/gtk/src/presets.c b/gtk/src/presets.c index 505ce023e..74a101b79 100644 --- a/gtk/src/presets.c +++ b/gtk/src/presets.c @@ -3056,11 +3056,8 @@ update_subtitle_presets(signal_user_data_t *ud) for (ii = 0; ii < count; ii++) { subtitle = ghb_array_get_nth(subtitle_list, ii); - if (ghb_settings_get_boolean(subtitle, "SubtitleEnabled")) - { - dict = ghb_value_dup(subtitle); - ghb_array_append(slist, dict); - } + dict = ghb_value_dup(subtitle); + ghb_array_append(slist, dict); } ghb_settings_set_value(ud->settings, "SubtitleList", slist); } |