diff options
author | phintuka <phintuka> | 2006-09-18 02:52:56 +0000 |
---|---|---|
committer | phintuka <phintuka> | 2006-09-18 02:52:56 +0000 |
commit | 8597f66ac9357bdeab28bf387300e9c549e75e07 (patch) | |
tree | 3776b106f48cf372f512a8e807f636c24c784c62 | |
parent | 547d3c54c77f3cfadea56b761643963585e7bf50 (diff) | |
download | xineliboutput-8597f66ac9357bdeab28bf387300e9c549e75e07.tar.gz xineliboutput-8597f66ac9357bdeab28bf387300e9c549e75e07.tar.bz2 |
Allow longer tvtime option strings
-rw-r--r-- | setup_menu.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/setup_menu.c b/setup_menu.c index a9859ca3..00303e90 100644 --- a/setup_menu.c +++ b/setup_menu.c @@ -4,7 +4,7 @@ * See the main source file 'xineliboutput.c' for copyright information and * how to reach the author. * - * $Id: setup_menu.c,v 1.8 2006-09-12 16:34:48 phintuka Exp $ + * $Id: setup_menu.c,v 1.9 2006-09-18 02:52:56 phintuka Exp $ * */ @@ -904,10 +904,11 @@ void cMenuSetupLocal::Set(void) DEINTERLACE_count, xc.s_deinterlaceMethodNames)); - if(deinterlace == DEINTERLACE_TVTIME) + if(deinterlace == DEINTERLACE_TVTIME) { Add(ctrl_deinterlace_opts = new cMenuEditStrItem(tr(" Options:"), newconfig.deinterlace_opts, - 64, OptionsChars)); + 254, OptionsChars)); + } #ifdef HAVE_XV_FIELD_ORDER if(!deinterlace) |