From b4892140043b515c696afba30d45d328c3f861e2 Mon Sep 17 00:00:00 2001 From: Carlos Valente Date: Tue, 19 Nov 2024 21:55:49 +0100 Subject: [PATCH] refactor: allow copy-paste in interface --- apps/client/src/features/rundown/Rundown.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/client/src/features/rundown/Rundown.tsx b/apps/client/src/features/rundown/Rundown.tsx index 25afff27c..27aa0ce22 100644 --- a/apps/client/src/features/rundown/Rundown.tsx +++ b/apps/client/src/features/rundown/Rundown.tsx @@ -214,8 +214,8 @@ export default function Rundown({ data }: RundownProps) { ['alt + D', () => insertAtId(SupportedEvent.Delay, cursor), { preventDefault: true }], ['alt + shift + D', () => insertAtId(SupportedEvent.Delay, cursor, true), { preventDefault: true }], - ['mod + C', () => setEntryCopyId(cursor), { preventDefault: true }], - ['mod + V', () => insertCopyAtId(cursor, entryCopyId), { preventDefault: true }], + ['mod + C', () => setEntryCopyId(cursor)], + ['mod + V', () => insertCopyAtId(cursor, entryCopyId)], ['mod + shift + V', () => insertCopyAtId(cursor, entryCopyId, true), { preventDefault: true }], ['alt + backspace', () => deleteAtCursor(cursor), { preventDefault: true }],