Increased the default value for the live translation delay from 1,000 to 1,500 ms

This commit is contained in:
Thorsten Sommer 2024-07-28 21:15:58 +02:00
parent 145181d9f8
commit 4f744610f1
Signed by: tsommer
GPG Key ID: 371BBA77A02C0108
2 changed files with 3 additions and 2 deletions

View File

@ -98,7 +98,7 @@ public sealed class Data
/// <summary>
/// The live translation interval for debouncing in milliseconds.
/// </summary>
public int LiveTranslationDebounceIntervalMilliseconds { get; set; } = 1_000;
public int LiveTranslationDebounceIntervalMilliseconds { get; set; } = 1_500;
/// <summary>
/// Do we want to preselect any translator options?

View File

@ -1,2 +1,3 @@
# v0.8.6, build 168
- Improved the readability of the `settings.json` file by using indentation and enum names instead of numbers
- Increased the default value for the live translation delay from 1,000 to 1,500 ms