Skip to content

Commit

Permalink
Reverse the behavior of peek
Browse files Browse the repository at this point in the history
  • Loading branch information
zenangst committed Oct 24, 2024
1 parent 6008fc1 commit 1f8c281
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion App/Sources/Core/MachPort/MachPortCoordinator.swift
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ final class MachPortCoordinator: @unchecked Sendable, ObservableObject {
start: previousKeyDownMachPortEvent.event.timestamp,
end: machPortEvent.event.timestamp
)
if pressDurtion < 0.75 {
if pressDurtion > 0.5 {
Task.detached { [workflowRunner] in
await workflowRunner.run(workflow, machPortEvent: machPortEvent, repeatingEvent: false)
}
Expand Down

0 comments on commit 1f8c281

Please sign in to comment.