[QuickAccent]Add a setting for the menu delay time (#20221)

This commit is contained in:
Jaime Bernardo
2022-09-01 16:56:19 +01:00
committed by GitHub
parent 006165574e
commit 3f3e837c36
5 changed files with 52 additions and 2 deletions

View File

@@ -16,10 +16,14 @@ namespace Microsoft.PowerToys.Settings.UI.Library
[JsonPropertyName("toolbar_position")]
public StringProperty ToolbarPosition { get; set; }
[JsonPropertyName("input_time_ms")]
public IntProperty InputTime { get; set; }
public PowerAccentProperties()
{
ActivationKey = PowerAccentActivationKey.Both;
ToolbarPosition = "Top center";
InputTime = new IntProperty(200);
}
}
}