From f1b44db6f4925b8880ba2182cb73d2cf05f68cce Mon Sep 17 00:00:00 2001 From: Erik Pasternak Date: Tue, 10 Jun 2025 13:52:14 -0700 Subject: [PATCH] Add missing bang --- core/shortcut_items.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/shortcut_items.ts b/core/shortcut_items.ts index 826cef285..615f1edc2 100644 --- a/core/shortcut_items.ts +++ b/core/shortcut_items.ts @@ -175,7 +175,7 @@ export function registerCopy() { : workspace; if (!targetWorkspace) return false; - if (focused.workspace.isFlyout) { + if (!focused.workspace.isFlyout) { targetWorkspace.hideChaff(); } copyData = focused.toCopyData();