diff --git a/components/SelectionManager.tsx b/components/SelectionManager.tsx index eab46624..1fbc46b9 100644 --- a/components/SelectionManager.tsx +++ b/components/SelectionManager.tsx @@ -511,7 +511,7 @@ export function SelectionManager() { } if ((e.key === "c" || e.key === "x") && (e.metaKey || e.ctrlKey)) { if (!rep) return; - if (e.shiftKey) return; + if (e.shiftKey || (e.metaKey && e.ctrlKey)) return; let [, , selectionWithFoldedChildren] = await getSortedSelectionBound(); if (!selectionWithFoldedChildren) return;