Skip to content

Commit

Permalink
do not require the shift key to remove an inode
Browse files Browse the repository at this point in the history
  • Loading branch information
jrief committed Oct 2, 2024
1 parent 1786dcb commit 21b5d12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/finder/MenuBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ export const MenuBar = forwardRef((props: any, forwardedRef) => {
} else if (event.key === 'v' && (event.ctrlKey || event.metaKey || event.altKey)) {
event.preventDefault();
pasteInodes();
} else if (['Backspace', 'Delete'].includes(event.key) && event.shiftKey) {
} else if (['Backspace', 'Delete'].includes(event.key)) {
event.preventDefault();
deleteInodes();
}
Expand Down

0 comments on commit 21b5d12

Please sign in to comment.