Commit dde460eb authored by Damien Fouilleul's avatar Damien Fouilleul

- skins2: fixed help text for skinnned playlist (was set to the same as skinned transparency)

parent e23764f7
......@@ -437,6 +437,9 @@ static int onTaskBarChange( vlc_object_t *pObj, const char *pVariable,
#define SKINS2_TRANSPARENCY_LONG N_("You can disable all transparency effects"\
" if you want. This is mainly useful when moving windows does not behave" \
" correctly.")
#define SKINS2_PLAYLIST N_("Enable skinned playlist")
#define SKINS2_PLAYLIST_LONG N_("You can choose whether the playlist window"\
" is rendered using the skin or the default GUI.")
vlc_module_begin();
set_category( CAT_INTERFACE );
......@@ -456,8 +459,8 @@ vlc_module_begin();
SKINS2_TRANSPARENCY_LONG, VLC_FALSE );
#endif
add_bool( "skinned-playlist", VLC_TRUE, NULL, SKINS2_TRANSPARENCY,
SKINS2_TRANSPARENCY_LONG, VLC_FALSE );
add_bool( "skinned-playlist", VLC_TRUE, NULL, SKINS2_PLAYLIST,
SKINS2_PLAYLIST_LONG, VLC_FALSE );
set_shortname( _("Skins"));
set_description( _("Skinnable Interface") );
set_capability( "interface", 30 );
......
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