From 57f531c5e96fdcf14c8bc6c7272d2d88fcda2ead Mon Sep 17 00:00:00 2001 From: thororen1234 <78185467+thororen1234@users.noreply.github.com> Date: Thu, 15 Aug 2024 01:58:39 -0400 Subject: [PATCH] Only check Vesktop and Equibop --- src/plugins/webContextMenus.web/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/webContextMenus.web/index.ts b/src/plugins/webContextMenus.web/index.ts index d7f190ec..7864c94a 100644 --- a/src/plugins/webContextMenus.web/index.ts +++ b/src/plugins/webContextMenus.web/index.ts @@ -40,7 +40,7 @@ const settings = definePluginSettings({ description: "Add back the Discord context menus for images, links and the chat input bar", // Web slate menu has proper spellcheck suggestions and image context menu is also pretty good, // so disable this by default. Vesktop just doesn't, so enable by default - default: !IS_DISCORD_DESKTOP && !IS_WEB, + default: IS_VESKTOP && !IS_EQUIBOP || !IS_VESKTOP && IS_EQUIBOP, restartNeeded: true } });