From 3f4be17393bdf8ab718bdc1769dd2f51e58437d1 Mon Sep 17 00:00:00 2001 From: Audric Ackermann Date: Wed, 7 Oct 2020 15:55:12 +1100 Subject: [PATCH] do not draw attention for linux env --- main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.js b/main.js index 4bebeafc9..f6f33a645 100644 --- a/main.js +++ b/main.js @@ -987,7 +987,7 @@ ipc.on('draw-attention', () => { if (!mainWindow) { return; } - if (process.platform === 'win32' || process.platform === 'linux') { + if (process.platform === 'win32') { mainWindow.flashFrame(true); } });