diff --git a/OverlayFormObj/OverlayForm.cs b/OverlayFormObj/OverlayForm.cs index 1d36980..e00a8fe 100644 --- a/OverlayFormObj/OverlayForm.cs +++ b/OverlayFormObj/OverlayForm.cs @@ -1429,7 +1429,7 @@ private void DisplayArtists(List artists, int page)//歌星點進去後 // 根據索引決定左側或右側顯示 int x = (i - startIndex) < songsPerColumn ? leftColumnX : rightColumnX; // 計算 Y 位置 - int y = startY += 75; + int y = startY += 55; // 顯示歌曲名稱圖片 AddPicture(songBitmap, x, y); @@ -1534,8 +1534,8 @@ private void DisplayArtists(List artists, int page)//歌星點進去後 Bitmap artistBitmap = GenerateTextImage(artistText, artistFont, artistColor, Color.Transparent); int x = (i - startIndex) < songsPerColumn ? leftColumnX : rightColumnX; - int y = startY + ((i - startIndex) % songsPerColumn) * (rowHeight + verticalSpacing); - + //int y = startY + ((i - startIndex) % songsPerColumn) * (rowHeight + verticalSpacing); + int y = startY += 55; // 顯示歌曲名稱圖片 AddPicture(songBitmap, x, y); // 顯示歌手名稱圖片(稍微右移)