Display environment vars in upper case

This commit is contained in:
Vic 2023-01-20 14:02:04 +08:00
parent 768ed4f80a
commit 504fb4ae05

View file

@ -52,8 +52,8 @@ namespace Flow.Launcher.Plugin.Explorer.Search
path = Path.IsPathFullyQualified(path) ? path : Path.GetFullPath(path);
// Variables are returned with a mixture of all upper/lower case.
// Call ToLower() to make the results look consistent
envStringPaths.Add(special.Key.ToString().ToLower(), path);
// Call ToUpper() to make the results look consistent
envStringPaths.Add(special.Key.ToString().ToUpper(), path);
}
}