diff options
| author | David Ullmer <davidullmer@outlook.de> | 2021-08-17 18:34:54 +0200 |
|---|---|---|
| committer | Cody Robibero <cody@robibe.ro> | 2022-01-04 08:20:16 -0700 |
| commit | 68db3be0e754d223a290c9276345bc9551eab887 (patch) | |
| tree | 16c221783dbf27142818e7f5ef0df87c53376573 /MediaBrowser.Controller/Drawing/IImageGenerator.cs | |
| parent | e026ba84c5e0d0a761cb1cae403e6f601e6fa2e0 (diff) | |
Remove darkening filter from Splashscreen
Using the foregroundLayer parameter has the same effect
Diffstat (limited to 'MediaBrowser.Controller/Drawing/IImageGenerator.cs')
| -rw-r--r-- | MediaBrowser.Controller/Drawing/IImageGenerator.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/MediaBrowser.Controller/Drawing/IImageGenerator.cs b/MediaBrowser.Controller/Drawing/IImageGenerator.cs index 21699c3f0..4f944ce54 100644 --- a/MediaBrowser.Controller/Drawing/IImageGenerator.cs +++ b/MediaBrowser.Controller/Drawing/IImageGenerator.cs @@ -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); } } |
