Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Loop/Core/Observers/KeybindTrigger.swift
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ final class KeybindTrigger {

// Only consume the event if the last command actually opened Loop.
// The main reason Loop *wouldn't* open after an `openLoop` call would be because the user has enabled a trigger delay.
return isLoopOpen ? .consume : .opening
return checkIfLoopOpen() ? .consume : .opening
}

// Only trigger Loop without an action if the only pressed keys perfectly matches the trigger key.
Expand Down