Commit 10a428a8 authored by Christophe Mutricy's avatar Christophe Mutricy

Fix the qt-pl-showflags tooltip

Hide the qt-adv-option as it is doing nothing
parent ea96e383
...@@ -68,17 +68,17 @@ static void ShowDialog ( intf_thread_t *, int, int, intf_dialog_args_t * ); ...@@ -68,17 +68,17 @@ static void ShowDialog ( intf_thread_t *, int, int, intf_dialog_args_t * );
#define TITLE_LONGTEXT N_("Show the name of the song or video in the " \ #define TITLE_LONGTEXT N_("Show the name of the song or video in the " \
"controler window title") "controler window title")
#define FILEDIALOG_PATH_TEXT N_("path to use in file dialog") #define FILEDIALOG_PATH_TEXT N_("Path to use in file dialog")
#define FILEDIALOG_PATH_LONGTEXT N_("path to use in file dialog") #define FILEDIALOG_PATH_LONGTEXT N_("path to use in file dialog")
#define ADVANCED_OPTIONS_TEXT N_("Advanced options") /*#define ADVANCED_OPTIONS_TEXT N_("Advanced options")
#define ADVANCED_OPTIONS_LONGTEXT N_("Activate by default all the" \ #define ADVANCED_OPTIONS_LONGTEXT N_("Activate by default all the" \
"Advanced options for geeks") "advanced options for geeks")*/
#define SHOWFLAGS_TEXT N_("Define what columns to show in playlist window") #define SHOWFLAGS_TEXT N_("Define what columns to show in playlist window")
#define SHOWFLAGS_LONGTEXT N_("Enter the sum of the options that you want:\n" \ #define SHOWFLAGS_LONGTEXT N_("Enter the sum of the options that you want: \n" \
"Title: 1\nDuration: 2\nArtist: 4\nGenre: 8\nCopyright: 10\n" \ "Title: 1; Duration: 2; Artist: 4; Genre: 8; " \
"Collection/album: 20\nRating: 100\n") "Copyright: 16; Collection/album: 32; Rating: 256." )
vlc_module_begin(); vlc_module_begin();
set_shortname( (char *)"Qt" ); set_shortname( (char *)"Qt" );
...@@ -108,8 +108,8 @@ vlc_module_begin(); ...@@ -108,8 +108,8 @@ vlc_module_begin();
FILEDIALOG_PATH_LONGTEXT, VLC_TRUE); FILEDIALOG_PATH_LONGTEXT, VLC_TRUE);
change_autosave(); change_autosave();
change_internal(); change_internal();
add_bool( "qt-adv-options", VLC_FALSE, NULL, ADVANCED_OPTIONS_TEXT, /* add_bool( "qt-adv-options", VLC_FALSE, NULL, ADVANCED_OPTIONS_TEXT,
ADVANCED_OPTIONS_LONGTEXT, VLC_TRUE ); ADVANCED_OPTIONS_LONGTEXT, VLC_TRUE );*/
add_integer( "qt-pl-showflags", add_integer( "qt-pl-showflags",
VLC_META_ENGINE_ARTIST|VLC_META_ENGINE_TITLE| VLC_META_ENGINE_ARTIST|VLC_META_ENGINE_TITLE|
VLC_META_ENGINE_DURATION|VLC_META_ENGINE_COLLECTION, VLC_META_ENGINE_DURATION|VLC_META_ENGINE_COLLECTION,
......
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