From e0d577cbda7276baae3c6328188d966c7ca32357 Mon Sep 17 00:00:00 2001 From: ItsLemmy Date: Mon, 22 Sep 2025 13:47:51 -0400 Subject: [PATCH] Prevent even more dragging. --- Modules/SidePanel/Cards/MediaCard.qml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Modules/SidePanel/Cards/MediaCard.qml b/Modules/SidePanel/Cards/MediaCard.qml index f8945df1..2a9a9213 100644 --- a/Modules/SidePanel/Cards/MediaCard.qml +++ b/Modules/SidePanel/Cards/MediaCard.qml @@ -99,6 +99,14 @@ NBox { implicitHeight: Math.min(160 * scaling, contentItem.implicitHeight + Style.marginM * scaling) padding: Style.marginS * scaling + onOpened: { + PanelService.willOpenPopup(root) + } + + onClosed: { + PanelService.willClosePopup(root) + } + contentItem: ListView { clip: true implicitHeight: contentHeight