From 3599a015d7bdc85bfa89dd6becc99cfec785d46c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=A0imon=20Brandner?= Date: Fri, 10 Dec 2021 15:55:35 +0100 Subject: [PATCH] Enable webgl (#284) --- src/electron-main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/electron-main.ts b/src/electron-main.ts index c82e346..ceefb9e 100644 --- a/src/electron-main.ts +++ b/src/electron-main.ts @@ -940,7 +940,7 @@ app.on('ready', async () => { nodeIntegration: false, //sandbox: true, // We enable sandboxing from app.enableSandbox() above contextIsolation: true, - webgl: false, + webgl: true, }, }); mainWindow.loadURL('vector://vector/webapp/');