瀏覽代碼

Offset Played Indicator to correct position

photonconvergence 2 年之前
父節點
當前提交
63a72f995b
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      Jellyfin.Drawing.Skia/PlayedIndicatorDrawer.cs

+ 1 - 1
Jellyfin.Drawing.Skia/PlayedIndicatorDrawer.cs

@@ -42,7 +42,7 @@ namespace Jellyfin.Drawing.Skia
             // ask the font manager for a font with that character
             paint.Typeface = SKFontManager.Default.MatchCharacter(emojiChar);
 
-            canvas.DrawText(Text, (float)x - 20, OffsetFromTopRightCorner + 12, paint);
+            canvas.DrawText(Text, (float)x - 12, OffsetFromTopRightCorner + 12, paint);
         }
     }
 }