diff options
author | Jesús <heckyel@hyperbola.info> | 2021-05-24 21:17:59 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2021-05-24 21:17:59 -0500 |
commit | 1b860c69177a88257b841aab5511cd816fffed9b (patch) | |
tree | 3246e589bab489d37a4338a7c91665033404c952 /settings.py | |
parent | ff8531cb84c1e89a49b2dc6e7b85a2d82775fa32 (diff) | |
download | yt-local-1b860c69177a88257b841aab5511cd816fffed9b.tar.lz yt-local-1b860c69177a88257b841aab5511cd816fffed9b.tar.xz yt-local-1b860c69177a88257b841aab5511cd816fffed9b.zip |
Not force plyr as player
Diffstat (limited to 'settings.py')
-rw-r--r-- | settings.py | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/settings.py b/settings.py index 1482db0..a2373da 100644 --- a/settings.py +++ b/settings.py @@ -148,11 +148,15 @@ For security reasons, enabling this is not recommended.''', 'category': 'playback', }), - ('use_video_hotkeys', { - 'label': 'Enable video hotkeys', - 'type': bool, - 'default': True, + ('use_video_player', { + 'type': int, + 'default': 1, 'comment': '', + 'options': [ + (0, 'Native'), + (1, 'Native with hotkeys'), + (2, 'Plyr'), + ], 'category': 'interface', }), |