From 5eb6ce6d967d62bdbc9e0f1cf6a1f31491c01a54 Mon Sep 17 00:00:00 2001 From: Damocles Date: Mon, 13 Apr 2026 21:42:51 +0200 Subject: [PATCH] use TapHandler for volume expand chevron to avoid hover interference --- modules/Volume.qml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/modules/Volume.qml b/modules/Volume.qml index eae863f..4b61d57 100644 --- a/modules/Volume.qml +++ b/modules/Volume.qml @@ -228,10 +228,9 @@ M.BarSection { font.family: M.Theme.iconFontFamily } - MouseArea { - anchors.fill: parent + TapHandler { cursorShape: Qt.PointingHandCursor - onClicked: root._expanded = !root._expanded + onTapped: root._expanded = !root._expanded } }