Add custom overlay positioning and scaling options in configuration

This commit is contained in:
CodeDevMLH
2026-03-10 23:43:20 +01:00
parent bca2d577b9
commit b3b6296798
4 changed files with 40 additions and 8 deletions

View File

@@ -56,5 +56,9 @@ namespace Jellyfin.Plugin.MediaBarEnhanced.Configuration
public string CustomOverlayStyle { get; set; } = "Shadowed";
public string CustomOverlayImageStyle { get; set; } = "None";
public string CustomOverlayPriority { get; set; } = "Image";
public int CustomOverlayPositionX { get; set; } = 0;
public int CustomOverlayPositionY { get; set; } = 0;
public int CustomOverlayScale { get; set; } = 100;
}
}