mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
32 lines
630 B
C#
32 lines
630 B
C#
namespace Flow.Launcher.Plugin;
|
|
|
|
/// <summary>
|
|
/// Enum for search delay speeds
|
|
/// </summary>
|
|
public enum SearchDelaySpeeds
|
|
{
|
|
/// <summary>
|
|
/// Slow search delay speed. 50ms.
|
|
/// </summary>
|
|
Slow,
|
|
|
|
/// <summary>
|
|
/// Moderately slow search delay speed. 100ms.
|
|
/// </summary>
|
|
ModeratelySlow,
|
|
|
|
/// <summary>
|
|
/// Medium search delay speed. 150ms. Default value.
|
|
/// </summary>
|
|
Medium,
|
|
|
|
/// <summary>
|
|
/// Moderately fast search delay speed. 200ms.
|
|
/// </summary>
|
|
ModeratelyFast,
|
|
|
|
/// <summary>
|
|
/// Fast search delay speed. 250ms.
|
|
/// </summary>
|
|
Fast
|
|
}
|