mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Remove logic that modifies settings
This commit is contained in:
parent
d3bae93a47
commit
b92181f6c6
1 changed files with 1 additions and 5 deletions
|
|
@ -202,11 +202,7 @@ namespace Flow.Launcher.Plugin.Program.Programs
|
|||
public static Application[] All(Settings settings)
|
||||
{
|
||||
var support = SupportUWP();
|
||||
if (!support && settings.EnableUWP)
|
||||
{
|
||||
settings.EnableUWP = false;
|
||||
}
|
||||
if (settings.EnableUWP)
|
||||
if (support && settings.EnableUWP)
|
||||
{
|
||||
var applications = CurrentUserPackages().AsParallel().SelectMany(p =>
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue