disable context menu on shift + right click (#1052)

This commit is contained in:
Athou
2023-07-21 09:58:03 +02:00
parent 45d0e0ec98
commit f1896d34e2
30 changed files with 184 additions and 0 deletions

View File

@@ -62,6 +62,8 @@ export function FeedEntries() {
const contextMenu = useContextMenu()
const headerRightClicked = (entry: ExpendableEntry, event: React.MouseEvent) => {
if (event.shiftKey) return
event.preventDefault()
contextMenu.show({
id: Constants.dom.entryContextMenuId(entry),