diff options
author | James Taylor <user234683@users.noreply.github.com> | 2020-09-09 18:53:11 -0700 |
---|---|---|
committer | James Taylor <user234683@users.noreply.github.com> | 2020-09-09 18:53:11 -0700 |
commit | c2ca47c5d3f452f94003d48c661a55685be649d0 (patch) | |
tree | f0cfb3ed3ad0609355dd5712ff01983d5f638c67 /settings.py | |
parent | 75171b7bd5e8a482702c2eb7b132af75b690b2cc (diff) | |
download | yt-local-c2ca47c5d3f452f94003d48c661a55685be649d0.tar.lz yt-local-c2ca47c5d3f452f94003d48c661a55685be649d0.tar.xz yt-local-c2ca47c5d3f452f94003d48c661a55685be649d0.zip |
Add setting to enable/disable video hotkeys
Diffstat (limited to 'settings.py')
-rw-r--r-- | settings.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/settings.py b/settings.py index 7e988f7..d8e8dce 100644 --- a/settings.py +++ b/settings.py @@ -108,6 +108,13 @@ For security reasons, enabling this is not recommended.''', ], }), + ('use_video_hotkeys', { + 'label': 'Enable video hotkeys', + 'type': bool, + 'default': True, + 'comment': '', + }), + ('theme', { 'type': int, 'default': 0, |