diff options
author | James Taylor <user234683@users.noreply.github.com> | 2020-10-20 15:38:00 -0700 |
---|---|---|
committer | James Taylor <user234683@users.noreply.github.com> | 2020-10-20 15:38:00 -0700 |
commit | 125ddaa8da8dad8f3e8eeb54f79a775b865c58bf (patch) | |
tree | 5f5c19608333bda6a8d1bc15082fad6df4951886 /settings.py | |
parent | c9d0f685a43d95d653db56a00efe520e3a04d0d2 (diff) | |
download | yt-local-125ddaa8da8dad8f3e8eeb54f79a775b865c58bf.tar.lz yt-local-125ddaa8da8dad8f3e8eeb54f79a775b865c58bf.tar.xz yt-local-125ddaa8da8dad8f3e8eeb54f79a775b865c58bf.zip |
Add setting to change font. Change default to arial
Closes #33
Diffstat (limited to 'settings.py')
-rw-r--r-- | settings.py | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/settings.py b/settings.py index 6bbb558..852310c 100644 --- a/settings.py +++ b/settings.py @@ -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, |