aboutsummaryrefslogtreecommitdiffstats
path: root/settings.py
diff options
context:
space:
mode:
authorJesús <heckyel@hyperbola.info>2021-05-24 21:17:59 -0500
committerJesús <heckyel@hyperbola.info>2021-05-24 21:17:59 -0500
commit1b860c69177a88257b841aab5511cd816fffed9b (patch)
tree3246e589bab489d37a4338a7c91665033404c952 /settings.py
parentff8531cb84c1e89a49b2dc6e7b85a2d82775fa32 (diff)
downloadyt-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.py12
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',
}),