Skip to content

Commit

Permalink
Merge pull request #100 from Stremio/v5-fix-typo
Browse files Browse the repository at this point in the history
Shell v5 - Fix Typo in mpv-set-prop
  • Loading branch information
jaruba authored Feb 5, 2025
2 parents 875a069 + 7facceb commit c0d1c65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ShellVideo/ShellVideo.js
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@ function ShellVideo(options) {
var separateWindow = options.mpvSeparateWindow ? 'yes' : 'no';
ipc.send('mpv-set-prop', ['vo', videoOutput]);
ipc.send('mpv-set-prop', ['osc', separateWindow]);
ipc.send('mpv-set-prop', ['input-defalt-bindings', separateWindow]);
ipc.send('mpv-set-prop', ['input-default-bindings', separateWindow]);
ipc.send('mpv-set-prop', ['input-vo-keyboard', separateWindow]);

var startAt = Math.floor(parseInt(commandArgs.time, 10) / 1000) || 0;
Expand Down

0 comments on commit c0d1c65

Please sign in to comment.