From 4aeebeb21410c5653406c818262ff577a718c26c Mon Sep 17 00:00:00 2001 From: Gregor Adams <1148334+pixelass@users.noreply.github.com> Date: Mon, 27 May 2024 23:27:01 +0200 Subject: [PATCH] feat: remove some options from the context menu (#323) ## Motivation ## Issues closed --- src/electron/helpers/core-setup.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/electron/helpers/core-setup.ts b/src/electron/helpers/core-setup.ts index e6567d0ca..6b64b10a9 100644 --- a/src/electron/helpers/core-setup.ts +++ b/src/electron/helpers/core-setup.ts @@ -24,6 +24,9 @@ if (gotTheLock || isTest) { contextMenu({ showSaveImageAs: true, showSearchWithGoogle: false, + showLearnSpelling: false, + showLookUpSelection: false, + showSelectAll: false, }); app.commandLine.appendSwitch("enable-smooth-scrolling");