Commit 23fe953d authored by Derk-Jan Hartman's avatar Derk-Jan Hartman

pda gui: Set prio to 0, so it is not eligible for automatic selection. This is...

pda gui: Set prio to 0, so it is not eligible for automatic selection. This is bad since it's a GTK module, and with our Qt switch and demise of wxGTK module, this module might be selected more often. It is not for the average user, and 0 tested under 0.9.0. Relates to #1798
parent 35824733
......@@ -71,7 +71,7 @@ vlc_module_begin();
set_category( CAT_INTERFACE );
set_subcategory( SUBCAT_INTERFACE_MAIN );
// add_bool( "pda-autoplayfile", 1, GtkAutoPlayFile, AUTOPLAYFILE_TEXT, AUTOPLAYFILE_LONGTEXT, true );
set_capability( "interface", 70 );
set_capability( "interface", 0 );
set_callbacks( Open, Close );
add_shortcut( "pda" );
vlc_module_end();
......
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