Add setting for autocomplete search

This commit is contained in:
Solirs 2023-03-02 14:23:39 +01:00
parent b9f4f3d2c7
commit 94ed104e7c
8 changed files with 30 additions and 3 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -18,7 +18,7 @@
params._Select(suggestion);
// Ctrl + Click = Only place the suggestion in the search bar, no auto search.
if(!e.ctrlKey){
if(!e.ctrlKey && searxng.settings.search_on_autocomplete_click){
submitIfQuery();
}
}