Skip to content

Commit 241415c

Browse files
authored
Fixed: lowercased lut extension filter in GUI program (#4)
Signed-off-by: Alessandro Bellia <casildaserrano@yahoo.it>
1 parent c7f36dc commit 241415c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

DwmLutGUI/DwmLutGUI/Injector.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ static Injector()
7171

7272
private static void CopyOrConvertLut(string source, string dest)
7373
{
74-
var extension = source.Split('.').Last();
74+
var extension = source.Split('.').Last().ToLower();
7575
switch (extension)
7676
{
7777
case "cube":

0 commit comments

Comments
 (0)