From c125f1c7e45cc53b104436dae17f9fe327698d18 Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Thu, 19 Jun 2025 17:05:40 +1000 Subject: internal: fix qmlls freezing --- modules/drawers/Interactions.qml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'modules/drawers') diff --git a/modules/drawers/Interactions.qml b/modules/drawers/Interactions.qml index d38cc8a..54cb24c 100644 --- a/modules/drawers/Interactions.qml +++ b/modules/drawers/Interactions.qml @@ -51,10 +51,10 @@ MouseArea { } } - onPositionChanged: ({ - x, - y - }) => { + onPositionChanged: event => { + const x = event.x; + const y = event.y; + // Show osd on hover const showOsd = inRightPanel(panels.osd, x, y); -- cgit v1.2.3-freya