ensure video is paused before hiding window
This commit is contained in:
@@ -197,9 +197,15 @@ function dispatch (action, ...args) {
|
||||
// window.history.forward()
|
||||
}
|
||||
if (action === 'pause') {
|
||||
if (state.url !== 'player' || state.video.isPaused) {
|
||||
ipcRenderer.send('paused-video')
|
||||
}
|
||||
state.video.isPaused = true
|
||||
update()
|
||||
}
|
||||
if (action === 'videoPaused') {
|
||||
ipcRenderer.send('paused-video')
|
||||
}
|
||||
if (action === 'playPause') {
|
||||
state.video.isPaused = !state.video.isPaused
|
||||
update()
|
||||
|
||||
Reference in New Issue
Block a user