From 5901b79e10146e7b43697e1b12da27a58a9aa9d4 Mon Sep 17 00:00:00 2001 From: Fedor Indutny <79877362+indutny-signal@users.noreply.github.com> Date: Thu, 24 Apr 2025 10:11:19 -0700 Subject: [PATCH] Remove already enabled blink features --- app/main.ts | 6 ------ 1 file changed, 6 deletions(-) diff --git a/app/main.ts b/app/main.ts index 9384c5537e..bcdfce8b29 100644 --- a/app/main.ts +++ b/app/main.ts @@ -202,11 +202,6 @@ const defaultWebPrefs = { getEnvironment() !== Environment.PackagedApp || !isProduction(app.getVersion()), spellcheck: false, - // https://chromium.googlesource.com/chromium/src/+/main/third_party/blink/renderer/platform/runtime_enabled_features.json5 - enableBlinkFeatures: [ - 'CSSPseudoDir', // status=experimental, needed for RTL (ex: :dir(rtl)) - 'CSSLogical', // status=experimental, needed for RTL (ex: margin-inline-start) - ].join(','), enablePreferredSizeMode: true, }; @@ -728,7 +723,6 @@ async function createWindow() { ), spellcheck, backgroundThrottling: true, - disableBlinkFeatures: 'Accelerated2dCanvas,AcceleratedSmallCanvases', }, icon: windowIcon, ...pick(windowConfig, ['autoHideMenuBar', 'x', 'y']),