From 59b2fe1646999d76a91d79998517f39d599d4a0d Mon Sep 17 00:00:00 2001 From: Dome Date: Mon, 28 Jul 2025 00:41:54 +0200 Subject: [PATCH] Update modern.js --- modern.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/modern.js b/modern.js index 892f214..b261b2c 100644 --- a/modern.js +++ b/modern.js @@ -411,10 +411,8 @@ class Tiler { _isException(win) { if (!win) return false; - const wmClass = (win.get_wm_class() || "").toLowerCase(); const appId = (win.get_gtk_application_id() || "").toLowerCase(); - return this._exceptions.includes(wmClass) || this._exceptions.includes(appId); }