From 569f69a2708b602c849eb7bdf568c2666ef6d924 Mon Sep 17 00:00:00 2001 From: Vic <10308169+VictoriousRaptor@users.noreply.github.com> Date: Tue, 18 Oct 2022 20:07:43 +0800 Subject: [PATCH] bugfix --- .../Flow.Launcher.Plugin.Program/Views/ProgramSetting.xaml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Plugins/Flow.Launcher.Plugin.Program/Views/ProgramSetting.xaml.cs b/Plugins/Flow.Launcher.Plugin.Program/Views/ProgramSetting.xaml.cs index 79082da56..b1ced189e 100644 --- a/Plugins/Flow.Launcher.Plugin.Program/Views/ProgramSetting.xaml.cs +++ b/Plugins/Flow.Launcher.Plugin.Program/Views/ProgramSetting.xaml.cs @@ -365,7 +365,7 @@ namespace Flow.Launcher.Plugin.Program.Views private bool IsAllItemsUserAdded(List items) { - return items.All(x => _settings.ProgramSources.Any(y => y == x)); + return items.All(x => _settings.ProgramSources.Any(y => y.UniqueIdentifier == x.UniqueIdentifier)); } } }