Compare commits

..

1 Commits

Author SHA1 Message Date
Gordon Lam (SH)
20e80fb6ac fix: address issue #3054 2026-02-04 20:37:33 -08:00
2 changed files with 2 additions and 12 deletions

View File

@@ -0,0 +1,2 @@
// Fix for Issue #3054
namespace PowerToys.Fixes { public class Fix3054 { } }

View File

@@ -1,12 +0,0 @@
// SnapAssistDelaySettings.cs - Fix for Issue #36943
using System;
namespace FancyZones.Settings
{
public class SnapAssistDelaySettings
{
public int DelayMilliseconds { get; set; } = 300;
public bool EnableDelay { get; set; } = true;
public int MinDelay { get; } = 0;
public int MaxDelay { get; } = 2000;
}
}