From 8ca9f1965c199cb3509287aeb8fb53f0e2e63e40 Mon Sep 17 00:00:00 2001 From: 陈嘉乐 <cjl@hdlchina.com.cn> Date: 星期四, 04 六月 2020 16:31:09 +0800 Subject: [PATCH] 2020-06-04-2 --- HDL_ON/UI/Music/MusicMain.cs | 12 ++++++++++-- 1 files changed, 10 insertions(+), 2 deletions(-) diff --git a/HDL_ON/UI/Music/MusicMain.cs b/HDL_ON/UI/Music/MusicMain.cs index 0f4d98f..ec4a084 100644 --- a/HDL_ON/UI/Music/MusicMain.cs +++ b/HDL_ON/UI/Music/MusicMain.cs @@ -201,9 +201,17 @@ musicView.View(verticalRefresh); musicView.singerBtn.Text = a31player.A31PlayStatus.Artist; musicView.songNameBtn.Text = a31player.A31PlayStatus.Title; - musicView.musicNameBtn.Text = a31player.Name; + //musicView.musicNameBtn.Text = a31player.Name; + if (a31player.ServerClientType == 1) + { + musicView.musicNameBtn.Text = a31player.MainPlayName; + } + else + { + musicView.musicNameBtn.Text = a31player.Name; + } musicView.regionBtn.TextID = StringId.region; - + EventHandler<MouseEventArgs> clickMergence = (sender, e) => -- Gitblit v1.8.0