mirror of
https://github.com/QL-Win/QuickLook.git
synced 2025-09-11 17:59:17 +00:00
Fix gimp xcf file extension check (#1229)
This commit is contained in:
@@ -96,7 +96,7 @@ namespace QuickLook.Plugin.ImageViewer.AnimatedImage.Providers
|
||||
{
|
||||
IMagickImage<byte> mi;
|
||||
// Only flatten multi-layer gimp xcf files.
|
||||
if (Path.LocalPath.EndsWith(".xcf") && layers.Count > 1)
|
||||
if (Path.LocalPath.ToLower().EndsWith(".xcf") && layers.Count > 1)
|
||||
{
|
||||
// Flatten crops layers to canvas
|
||||
mi = layers.Flatten(MagickColor.FromRgba(0, 0, 0, 0));
|
||||
|
Reference in New Issue
Block a user