diff --git a/src/components/views/rooms/EventTile.tsx b/src/components/views/rooms/EventTile.tsx index 82c1a50a23..a30b8002f4 100644 --- a/src/components/views/rooms/EventTile.tsx +++ b/src/components/views/rooms/EventTile.tsx @@ -854,9 +854,6 @@ export class UnwrappedEventTile extends React.Component { private showContextMenu(ev: React.MouseEvent, permalink?: string): void { const clickTarget = ev.target as HTMLElement; - // Return if message right-click context menu isn't enabled - if (!SettingsStore.getValue("feature_message_right_click_context_menu")) return; - // Try to find an anchor element const anchorElement = (clickTarget instanceof HTMLAnchorElement) ? clickTarget : clickTarget.closest("a"); diff --git a/src/i18n/strings/en_EN.json b/src/i18n/strings/en_EN.json index bac91bfdde..d344f164ad 100644 --- a/src/i18n/strings/en_EN.json +++ b/src/i18n/strings/en_EN.json @@ -899,7 +899,6 @@ "Right panel stays open (defaults to room member list)": "Right panel stays open (defaults to room member list)", "Jump to date (adds /jumptodate and jump to date headers)": "Jump to date (adds /jumptodate and jump to date headers)", "Send read receipts": "Send read receipts", - "Right-click message context menu": "Right-click message context menu", "Live Location Sharing (temporary implementation: locations persist in room history)": "Live Location Sharing (temporary implementation: locations persist in room history)", "Favourite Messages (under active development)": "Favourite Messages (under active development)", "Use new session manager (under active development)": "Use new session manager (under active development)", diff --git a/src/settings/Settings.tsx b/src/settings/Settings.tsx index 004dfe9d48..c5f1511420 100644 --- a/src/settings/Settings.tsx +++ b/src/settings/Settings.tsx @@ -406,13 +406,6 @@ export const SETTINGS: {[setting: string]: ISetting} = { displayName: _td("Send read receipts"), default: true, }, - "feature_message_right_click_context_menu": { - isFeature: true, - supportedLevels: LEVELS_FEATURE, - labsGroup: LabGroup.Rooms, - displayName: _td("Right-click message context menu"), - default: false, - }, "feature_location_share_live": { isFeature: true, labsGroup: LabGroup.Messaging,