mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-02 05:48:47 +01:00
Remove darkening filter from Splashscreen
Using the foregroundLayer parameter has the same effect
This commit is contained in:
committed by
Cody Robibero
parent
e026ba84c5
commit
68db3be0e7
@@ -11,7 +11,7 @@ namespace MediaBrowser.Controller.Drawing
|
||||
/// <summary>
|
||||
/// Generates a splashscreen.
|
||||
/// </summary>
|
||||
/// <param name="generationOptions">The options used to generate the splashscreen.</param>
|
||||
void GenerateSplashscreen(SplashscreenOptions generationOptions);
|
||||
/// <param name="outputPath">The path where the splashscreen should be saved.</param>
|
||||
void GenerateSplashscreen(string outputPath);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,29 +0,0 @@
|
||||
namespace MediaBrowser.Controller.Drawing
|
||||
{
|
||||
/// <summary>
|
||||
/// Options used to generate the splashscreen.
|
||||
/// </summary>
|
||||
public class SplashscreenOptions
|
||||
{
|
||||
/// <summary>
|
||||
/// Initializes a new instance of the <see cref="SplashscreenOptions"/> class.
|
||||
/// </summary>
|
||||
/// <param name="outputPath">The output path.</param>
|
||||
/// <param name="applyFilter">Optional. Apply a darkening filter.</param>
|
||||
public SplashscreenOptions(string outputPath, bool applyFilter = false)
|
||||
{
|
||||
OutputPath = outputPath;
|
||||
ApplyFilter = applyFilter;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the output path.
|
||||
/// </summary>
|
||||
public string OutputPath { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets a value indicating whether to apply a darkening filter at the end.
|
||||
/// </summary>
|
||||
public bool ApplyFilter { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user