diff --git a/Loop/Core/Observers/KeybindTrigger.swift b/Loop/Core/Observers/KeybindTrigger.swift index ef28fecf..4bfb129f 100644 --- a/Loop/Core/Observers/KeybindTrigger.swift +++ b/Loop/Core/Observers/KeybindTrigger.swift @@ -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.