From 8a80c98a292d930555e0ae064c688504744de85b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=91=E5=B0=8F=E9=B8=A6?= <61354956+crowya@users.noreply.github.com> Date: Fri, 28 Jul 2023 20:20:45 +0800 Subject: [PATCH] =?UTF-8?q?=E4=B8=BA=E6=9E=81=E7=AE=80=E6=A8=A1=E5=BC=8F?= =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=8A=98=E5=8F=A0=E8=AF=B4=E8=AF=B4=E9=81=AE?= =?UTF-8?q?=E6=8C=A1=E7=89=A9=E7=9A=84=E6=A0=B7=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- live2d/waifu-tips.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/live2d/waifu-tips.js b/live2d/waifu-tips.js index 90ba68a..8ba002d 100644 --- a/live2d/waifu-tips.js +++ b/live2d/waifu-tips.js @@ -10,11 +10,13 @@ function aplayer_panel_toggle(){ if(music_flag){ $(".aplayer.aplayer-fixed .aplayer-body").addClass("my-hide"); $(".aplayer.aplayer-fixed .aplayer-list").addClass("my-hide zero-margin-bottom"); + $(".shuoshuo-content.shuoshuo-folded").removeClass("simple-shuoshuo-folded"); music_flag=false; } else{ $(".aplayer.aplayer-fixed .aplayer-body").removeClass("my-hide"); $(".aplayer.aplayer-fixed .aplayer-list").removeClass("my-hide zero-margin-bottom"); + $(".shuoshuo-content.shuoshuo-folded").addClass("simple-shuoshuo-folded"); music_flag=true; } }