From a06764e111ed030646db131240f9164b8ab102cb Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Fri, 3 Apr 2026 18:50:44 +0200 Subject: [PATCH] revealer: more correct visible conditions --- dots/.config/quickshell/ii/modules/common/widgets/Revealer.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dots/.config/quickshell/ii/modules/common/widgets/Revealer.qml b/dots/.config/quickshell/ii/modules/common/widgets/Revealer.qml index bbbe2efae..ccd9e5094 100644 --- a/dots/.config/quickshell/ii/modules/common/widgets/Revealer.qml +++ b/dots/.config/quickshell/ii/modules/common/widgets/Revealer.qml @@ -12,7 +12,7 @@ Item { implicitWidth: (reveal || vertical) ? childrenRect.width : 0 implicitHeight: (reveal || !vertical) ? childrenRect.height : 0 - visible: reveal || (width > 0 && height > 0) + visible: reveal || (implicitWidth > 0 && !vertical) || (implicitHeight > 0 && vertical) Behavior on implicitWidth { enabled: !vertical