diff --git a/src/components/Play.vue b/src/components/Play.vue index 9a902d9..422161d 100644 --- a/src/components/Play.vue +++ b/src/components/Play.vue @@ -823,6 +823,10 @@ export default { if (this.xg) { if (this.xg.paused) { this.xg.play() + // 当全屏暂停再继续播放时,隐藏进度条 + if (this.xg.fullscreen) { + remote.getCurrentWindow().setProgressBar(-1) + } } else { this.xg.pause() }