From ca786648a2ec5764fffe6e87f47c3feab5dd9a5f Mon Sep 17 00:00:00 2001 From: Percs <83934299+Percslol@users.noreply.github.com> Date: Thu, 26 Sep 2024 21:18:39 -0500 Subject: [PATCH] fix?: split bar again (hopefully the last time) --- src/AliceWM.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/AliceWM.tsx b/src/AliceWM.tsx index 6e8027a3..8c638f21 100755 --- a/src/AliceWM.tsx +++ b/src/AliceWM.tsx @@ -1142,6 +1142,7 @@ class WMSplitBar { document.documentElement.clientWidth || document.body.clientWidth; this.element.style.left = width / 2 - 4 + "px"; + this.element.style.zIndex = getHighestZindex() + ""; document.body.appendChild(this.element); setTimeout(() => { this.element.style.removeProperty("background-color");