diff options
author | jstebbins <[email protected]> | 2012-05-08 16:19:40 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2012-05-08 16:19:40 +0000 |
commit | 662355ae07f93f0a84ce91f1519561d288c3b870 (patch) | |
tree | a9b301f8c85fa2f4010f520e68dccd8055f145a7 /gtk | |
parent | c21c54cf722d9ba1377b85122bfbada5d8b0c06b (diff) |
LinGui: remove unnecessary 100 title limit
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4651 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'gtk')
-rw-r--r-- | gtk/src/hb-backend.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/gtk/src/hb-backend.c b/gtk/src/hb-backend.c index f104850e7..8bb36a552 100644 --- a/gtk/src/hb-backend.c +++ b/gtk/src/hb-backend.c @@ -1984,7 +1984,6 @@ title_opts_set(GtkBuilder *builder, const gchar *name) { list = hb_get_titles( h_scan ); count = hb_list_count( list ); - if (count > 100) count = 100; } if (titles) g_strfreev(titles); if (title_opts.map) g_free(title_opts.map); @@ -2335,7 +2334,6 @@ ghb_longest_title() if (h_scan == NULL) return 0; list = hb_get_titles( h_scan ); count = hb_list_count( list ); - if (count > 100) count = 100; if (count < 1) return 0; title = (hb_title_t*)hb_list_item(list, 0); feature = title->job->feature; |