summaryrefslogtreecommitdiff
path: root/searx/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'searx/plugins')
-rw-r--r--searx/plugins/search_on_category_select.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/searx/plugins/search_on_category_select.py b/searx/plugins/search_on_category_select.py
index 7d124cc45..d4b725acf 100644
--- a/searx/plugins/search_on_category_select.py
+++ b/searx/plugins/search_on_category_select.py
@@ -15,8 +15,8 @@ along with searx. If not, see < http://www.gnu.org/licenses/ >.
(C) 2015 by Adam Tauber, <asciimoo@gmail.com>
'''
from flask.ext.babel import gettext
-name = 'Search on category select'
-description = gettext('Perform search immediately if a category selected')
-default_on = False
+name = gettext('Search on category select')
+description = gettext('Perform search immediately if a category selected. Disable to select multiple categories.')
+default_on = True
js_dependencies = ('js/search_on_category_select.js',)