Commit 4b7950c7 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Mark loop, repeat, random as safe.

parent 76deff73
......@@ -2000,12 +2000,16 @@ vlc_module_begin ()
add_category_hint( N_("Playlist"), PLAYLIST_CAT_LONGTEXT , false )
add_bool( "random", 0, NULL, RANDOM_TEXT, RANDOM_LONGTEXT, false )
change_short('Z')
change_safe()
add_bool( "loop", 0, NULL, LOOP_TEXT, LOOP_LONGTEXT, false )
change_short('L')
change_safe()
add_bool( "repeat", 0, NULL, REPEAT_TEXT, REPEAT_LONGTEXT, false )
change_short('R')
change_safe()
add_bool( "play-and-exit", 0, NULL, PAE_TEXT, PAE_LONGTEXT, false )
add_bool( "play-and-stop", 0, NULL, PAS_TEXT, PAS_LONGTEXT, false )
change_safe()
add_bool( "media-library", 1, NULL, ML_TEXT, ML_LONGTEXT, false )
add_bool( "playlist-tree", 0, NULL, PLTREE_TEXT, PLTREE_LONGTEXT, false )
......
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