From 9e4926bf3428a8ed6bef71634a948e43f77f4944 Mon Sep 17 00:00:00 2001 From: ivan tkachenko Date: Thu, 4 Aug 2022 17:24:22 +0300 Subject: [PATCH] effects/private: Simplify "active-hidden" state by inheriting from "initial-hidden" This does not fix anything per se, just strips some unnecessary lines and extra ensures zero opacity to other items. --- src/effects/private/qml/WindowHeapDelegate.qml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/effects/private/qml/WindowHeapDelegate.qml b/src/effects/private/qml/WindowHeapDelegate.qml index 7bea0106ea..6f6cc648d5 100644 --- a/src/effects/private/qml/WindowHeapDelegate.qml +++ b/src/effects/private/qml/WindowHeapDelegate.qml @@ -263,11 +263,7 @@ Item { }, State { name: "active-hidden" - extend: "initial" - PropertyChanges { - target: thumb - opacity: 0 - } + extend: "initial-hidden" } ]