Commit 6a0e3463 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

ball: do not enumerate choices in long text

parent ff572f6e
...@@ -96,7 +96,6 @@ static int getBallColor( vlc_object_t *p_this, char const *psz_newval ); ...@@ -96,7 +96,6 @@ static int getBallColor( vlc_object_t *p_this, char const *psz_newval );
* Module descriptor * Module descriptor
*****************************************************************************/ *****************************************************************************/
#define BALL_COLOR_TEXT N_("Ball color") #define BALL_COLOR_TEXT N_("Ball color")
#define BALL_COLOR_LONGTEXT N_("Ball color, one of \"red\", \"blue\" and \"green\".")
#define EDGE_VISIBLE_TEXT N_("Edge visible") #define EDGE_VISIBLE_TEXT N_("Edge visible")
#define EDGE_VISIBLE_LONGTEXT N_("Set edge visibility.") #define EDGE_VISIBLE_LONGTEXT N_("Set edge visibility.")
...@@ -129,7 +128,7 @@ vlc_module_begin () ...@@ -129,7 +128,7 @@ vlc_module_begin ()
set_subcategory( SUBCAT_VIDEO_VFILTER ) set_subcategory( SUBCAT_VIDEO_VFILTER )
add_string( FILTER_PREFIX "color", "red", add_string( FILTER_PREFIX "color", "red",
BALL_COLOR_TEXT, BALL_COLOR_LONGTEXT, false ) BALL_COLOR_TEXT, BALL_COLOR_TEXT, false )
change_string_list( mode_list, mode_list_text, 0 ) change_string_list( mode_list, mode_list_text, 0 )
add_integer_with_range( FILTER_PREFIX "speed", 4, 1, 15, add_integer_with_range( FILTER_PREFIX "speed", 4, 1, 15,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment