Skip to content

Commit

Permalink
Fix quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
Kagami committed Jan 1, 2019
1 parent 37d914a commit 2bcfe3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion example/renderer.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class Main extends React.PureComponent {
this.mpv = mpv;
const observe = mpv.observe.bind(mpv);
["pause", "time-pos", "duration", "eof-reached"].forEach(observe);
this.mpv.property("hwdec", 'auto');
this.mpv.property("hwdec", "auto");
this.mpv.command("loadfile", path.join(__dirname, "tos.mkv"));
}
handlePropertyChange(name, value) {
Expand Down

0 comments on commit 2bcfe3f

Please sign in to comment.