Ver Fonte

Offset Played Indicator to correct position

photonconvergence há 2 anos atrás
pai
commit
63a72f995b
1 ficheiros alterados com 1 adições e 1 exclusões
  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
             // ask the font manager for a font with that character
             paint.Typeface = SKFontManager.Default.MatchCharacter(emojiChar);
             paint.Typeface = SKFontManager.Default.MatchCharacter(emojiChar);
 
 
-            canvas.DrawText(Text, (float)x - 20, OffsetFromTopRightCorner + 12, paint);
+            canvas.DrawText(Text, (float)x - 12, OffsetFromTopRightCorner + 12, paint);
         }
         }
     }
     }
 }
 }