mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-05-10 15:30:40 +00:00
Player: fix subtitles size shortcut
This commit is contained in:
parent
ee4a6f562d
commit
95ee640813
1 changed files with 1 additions and 1 deletions
|
|
@ -669,7 +669,7 @@ const Player = ({ urlParams, queryParams }) => {
|
|||
}, [onIncreaseSubtitlesDelay, onDecreaseSubtitlesDelay], !menusOpen);
|
||||
|
||||
onShortcut('subtitlesSize', (combo) => {
|
||||
combo === 1 ? onUpdateSubtitlesSize(-1) : onUpdateSubtitlesSize(1);
|
||||
combo === 1 ? onUpdateSubtitlesSize(1) : onUpdateSubtitlesSize(-1);
|
||||
}, [onUpdateSubtitlesSize, onUpdateSubtitlesSize], !menusOpen);
|
||||
|
||||
onShortcut('toggleSubtitles', () => {
|
||||
|
|
|
|||
Loading…
Reference in a new issue