diff options
author | Alexandre Flament <alex@al-f.net> | 2022-06-03 14:10:48 +0200 |
---|---|---|
committer | Alexandre Flament <alex@al-f.net> | 2022-06-18 08:54:24 +0200 |
commit | 8a85d1b0c7b03cc0d0f82287a114728b521a5a47 (patch) | |
tree | 53e78ebafe2c07edc2baae4afa27c3787076750a /searx/settings_defaults.py | |
parent | 43b8b64866e450dc4143afd209258f40d6ac3325 (diff) | |
download | searxng-8a85d1b0c7b03cc0d0f82287a114728b521a5a47.tar.gz searxng-8a85d1b0c7b03cc0d0f82287a114728b521a5a47.zip |
Theme: add a preference to center the results (Oscar) (2nd edition)
related to
* #1169
* #1281
* #1286
Diffstat (limited to 'searx/settings_defaults.py')
-rw-r--r-- | searx/settings_defaults.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/searx/settings_defaults.py b/searx/settings_defaults.py index 35089fbd4..ccbbbf287 100644 --- a/searx/settings_defaults.py +++ b/searx/settings_defaults.py @@ -184,6 +184,7 @@ SCHEMA = { 'theme_args': { 'simple_style': SettingsValue(SIMPLE_STYLE, 'auto'), }, + 'center_aligment': SettingsValue(bool, False), 'results_on_new_tab': SettingsValue(bool, False), 'advanced_search': SettingsValue(bool, False), 'query_in_title': SettingsValue(bool, False), |