From 4d0a0644254294371831be0fe342aa824cc717ff Mon Sep 17 00:00:00 2001 From: V Date: Thu, 11 May 2023 02:31:07 +0200 Subject: [PATCH] WebContextMenus: Fix slate menu --- src/plugins/webContextMenus.web.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/plugins/webContextMenus.web.ts b/src/plugins/webContextMenus.web.ts index bab82b4a..39933fb7 100644 --- a/src/plugins/webContextMenus.web.ts +++ b/src/plugins/webContextMenus.web.ts @@ -157,9 +157,9 @@ export default definePlugin({ replace: "$1=[],$2=[]", }, { - // if (!IS_DESKTOP) return - match: /(?<=showApplicationCommandSuggestions;)if\(!\i\.\i\)/, - replace: "if(false)" + // if (!IS_DESKTOP) return null; + match: /if\(!\i\.\i\)return null;/, + replace: "" }, { // do not add menu items for entries removed in patch 1. Using a lookbehind for group 1 is slow,