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, ...@@ -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"\ #define SKINS2_TRANSPARENCY_LONG N_("You can disable all transparency effects"\
" if you want. This is mainly useful when moving windows does not behave" \ " if you want. This is mainly useful when moving windows does not behave" \
" correctly.") " 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(); vlc_module_begin();
set_category( CAT_INTERFACE ); set_category( CAT_INTERFACE );
...@@ -456,8 +459,8 @@ vlc_module_begin(); ...@@ -456,8 +459,8 @@ vlc_module_begin();
SKINS2_TRANSPARENCY_LONG, VLC_FALSE ); SKINS2_TRANSPARENCY_LONG, VLC_FALSE );
#endif #endif
add_bool( "skinned-playlist", VLC_TRUE, NULL, SKINS2_TRANSPARENCY, add_bool( "skinned-playlist", VLC_TRUE, NULL, SKINS2_PLAYLIST,
SKINS2_TRANSPARENCY_LONG, VLC_FALSE ); SKINS2_PLAYLIST_LONG, VLC_FALSE );
set_shortname( _("Skins")); set_shortname( _("Skins"));
set_description( _("Skinnable Interface") ); set_description( _("Skinnable Interface") );
set_capability( "interface", 30 ); 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