From 4c4cc6d81b4c7bcba1e0dbdf4c6be487492ccf3d Mon Sep 17 00:00:00 2001 From: haiyangcui Date: Sat, 7 Nov 2020 12:35:35 +0100 Subject: [PATCH] =?UTF-8?q?=E5=BD=93=E5=85=A8=E5=B1=8F=E6=9A=82=E5=81=9C?= =?UTF-8?q?=E5=86=8D=E7=BB=A7=E7=BB=AD=E6=92=AD=E6=94=BE=E6=97=B6,?= =?UTF-8?q?=E9=9A=90=E8=97=8F=E8=BF=9B=E5=BA=A6=E6=9D=A1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/Play.vue | 4 ++++ 1 file changed, 4 insertions(+) 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() }