From e7a6f5228de977e20d22e658e566688927d45d05 Mon Sep 17 00:00:00 2001 From: bbedward Date: Thu, 4 Dec 2025 12:50:06 -0500 Subject: [PATCH] widgets: fix binding loop in button --- quickshell/Widgets/DankActionButton.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quickshell/Widgets/DankActionButton.qml b/quickshell/Widgets/DankActionButton.qml index 3776930f..1b98e604 100644 --- a/quickshell/Widgets/DankActionButton.qml +++ b/quickshell/Widgets/DankActionButton.qml @@ -37,6 +37,6 @@ StyledRect { onClicked: root.clicked() onEntered: root.entered() onExited: root.exited() - tooltipText: tooltipText + tooltipText: root.tooltipText } }