Add setting to change font. Change default to arial

Closes #33
This commit is contained in:
James Taylor
2020-10-20 15:38:00 -07:00
parent c9d0f685a4
commit 125ddaa8da
4 changed files with 32 additions and 2 deletions

View File

@@ -153,6 +153,19 @@ For security reasons, enabling this is not recommended.''',
],
}),
('font', {
'type': int,
'default': 1,
'comment': '',
'options': [
(0, 'Browser default'),
(1, 'Arial'),
(2, 'Liberation Serif'),
(3, 'Verdana'),
(4, 'Tahoma'),
],
}),
('autocheck_subscriptions', {
'type': bool,
'default': 0,