mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-04 18:26:39 +02:00
[Hosts] Improved duplicate hosts finding (#24294)
* improved duplicate hosts finding * improved filters with AdvancedCollectionView * cancel FindDuplicates when file is reloaded
This commit is contained in:
committed by
GitHub
parent
0d9b797ef0
commit
3e651b8de6
@@ -76,6 +76,19 @@ namespace Microsoft.PowerToys.Settings.UI.ViewModels
|
||||
}
|
||||
}
|
||||
|
||||
public bool LoopbackDuplicates
|
||||
{
|
||||
get => Settings.Properties.LoopbackDuplicates;
|
||||
set
|
||||
{
|
||||
if (value != Settings.Properties.LoopbackDuplicates)
|
||||
{
|
||||
Settings.Properties.LoopbackDuplicates = value;
|
||||
NotifyPropertyChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public bool LaunchAdministrator
|
||||
{
|
||||
get => Settings.Properties.LaunchAdministrator;
|
||||
|
||||
Reference in New Issue
Block a user