PowerToys/src/settings-ui/Settings.UI.Library/PowerAccentSettings.cs
Taras f987a48b3a
[Quick Accent]Increase default input delay to 300ms (#22680)
* [Quick Accent] change default input delay and default activation key

* [Quick Accent] use default activation key 'Both' as before

* [Quick Accent] use PowerAccentSettings.DefaultInputTimeMs

* [Quick Accent] add more comments
2022-12-13 17:15:56 +00:00

37 lines
1.1 KiB
C#

// Copyright (c) Microsoft Corporation
// The Microsoft Corporation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using System.Text.Json.Serialization;
using Microsoft.PowerToys.Settings.UI.Library.Interfaces;
namespace Microsoft.PowerToys.Settings.UI.Library
{
public class PowerAccentSettings : BasePTModuleSettings, ISettingsConfig
{
public const string ModuleName = "QuickAccent";
public const string ModuleVersion = "0.0.1";
public const int DefaultInputTimeMs = 300; // PowerAccentKeyboardService.PowerAccentSettings.inputTime should be the same
[JsonPropertyName("properties")]
public PowerAccentProperties Properties { get; set; }
public PowerAccentSettings()
{
Name = ModuleName;
Version = ModuleVersion;
Properties = new PowerAccentProperties();
}
public string GetModuleName()
{
return Name;
}
public bool UpgradeSettingsConfiguration()
{
return false;
}
}
}