2 changed files with 12 additions and 0 deletions
@ -0,0 +1,11 @@ |
|||
using System; |
|||
using Avalonia.Platform; |
|||
|
|||
namespace Avalonia.Windowing |
|||
{ |
|||
public class PlatformSettings : IPlatformSettings |
|||
{ |
|||
public Size DoubleClickSize => new Size(4, 4); |
|||
public TimeSpan DoubleClickTime => TimeSpan.FromMilliseconds(200); |
|||
} |
|||
} |
|||
Loading…
Reference in new issue