Merge pull request #40 from feross/fix-36

Add missing update() calls
This commit is contained in:
Nate Goldman
2016-03-05 19:48:47 -08:00

View File

@@ -207,9 +207,11 @@ function dispatch (action, ...args) {
}
if (action === 'toggleFullScreen') {
electron.ipcRenderer.send('toggleFullScreen')
update()
}
if (action === 'videoMouseMoved') {
state.video.mouseStationarySince = new Date().getTime()
update()
}
}