We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent efe5e20 commit f9c30c6Copy full SHA for f9c30c6
1 file changed
Core/Sources/SuggestionWidget/WidgetWindowsController.swift
@@ -81,7 +81,7 @@ actor WidgetWindowsController: NSObject {
81
82
func updateWindowOpacity(immediately: Bool) {
83
let shouldDebounce = !immediately &&
84
- !(Date().timeIntervalSince(lastUpdateWindowOpacityTime) > 5)
+ !(Date().timeIntervalSince(lastUpdateWindowOpacityTime) > 3)
85
lastUpdateWindowOpacityTime = Date()
86
updateWindowOpacityTask?.cancel()
87
@@ -194,7 +194,7 @@ actor WidgetWindowsController: NSObject {
194
195
let now = Date()
196
let shouldThrottle = !immediately &&
197
- !(now.timeIntervalSince(lastUpdateWindowLocationTime) > 5)
+ !(now.timeIntervalSince(lastUpdateWindowLocationTime) > 3)
198
199
updateWindowLocationTask?.cancel()
200
let interval: TimeInterval = 0.1
0 commit comments