Offset Played Indicator to correct position

This commit is contained in:
photonconvergence 2022-11-28 15:28:43 -08:00
parent 87d4ef7403
commit 63a72f995b

View File

@ -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);
}
}
}