PowerAccent-21531: support excluded apps (#22004)

This commit is contained in:
Taras
2022-11-15 14:47:52 +02:00
committed by GitHub
parent b482188782
commit a357d62ff5
8 changed files with 145 additions and 14 deletions

View File

@@ -21,12 +21,16 @@ namespace Microsoft.PowerToys.Settings.UI.Library
[JsonPropertyName("selected_lang")]
public StringProperty SelectedLang { get; set; }
[JsonPropertyName("excluded_apps")]
public StringProperty ExcludedApps { get; set; }
public PowerAccentProperties()
{
ActivationKey = PowerAccentActivationKey.Both;
ToolbarPosition = "Top center";
InputTime = new IntProperty(200);
SelectedLang = "ALL";
ExcludedApps = new StringProperty();
}
}
}