Allow ctrl-c during selection mode

pull/7147/head
niels 2025-01-25 15:48:55 +01:00
parent 68fa947faf
commit c862d1adc5
1 changed files with 2 additions and 1 deletions

View File

@ -919,7 +919,8 @@ export default {
this.$emit('update:selection', data);
}
event.preventDefault();
const isCopyShortcut = event.code === 'KeyC' && metaKey;
if (!isCopyShortcut) event.preventDefault();
break;
}