From 4b3cc750a1f2586b24c903ec2cb0bf17dc04e367 Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Thu, 28 Aug 2025 16:48:57 -0400 Subject: [PATCH] Remove Kirigami.OverlayZStacking from HoverLinkIndicator I forgot this is for Popups only, let's just go back to the good old days of hardcoding a Z value. --- src/app/qml/HoverLinkIndicator.qml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/app/qml/HoverLinkIndicator.qml b/src/app/qml/HoverLinkIndicator.qml index 2f1c28f8c..ad0fd73cf 100644 --- a/src/app/qml/HoverLinkIndicator.qml +++ b/src/app/qml/HoverLinkIndicator.qml @@ -20,8 +20,7 @@ RowLayout { } } - Kirigami.OverlayZStacking.layer: Kirigami.OverlayZStacking.ToolTip - z: Kirigami.OverlayZStacking.z + z: 99 spacing: 0 opacity: (!root.text.startsWith("https://matrix.to/") && root.text.length > 0) ? 1 : 0