From 87a4937421441a4558dd86bdce77481395f50918 Mon Sep 17 00:00:00 2001 From: uncor3 Date: Fri, 22 May 2026 11:46:13 +0000 Subject: [PATCH] fix GridView appearing over other elements --- src/ui/AlbumContents.qml | 3 ++- src/ui/DeviceGallery.qml | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/ui/AlbumContents.qml b/src/ui/AlbumContents.qml index e40af3d..cef79d8 100644 --- a/src/ui/AlbumContents.qml +++ b/src/ui/AlbumContents.qml @@ -88,9 +88,10 @@ Item { id: gallery anchors.fill: parent interactive: true - + clip: true cellWidth: 250 cellHeight: 250 + acceptedButtons : Qt.NoButton model: albumContentsModel delegate: ItemDelegate { diff --git a/src/ui/DeviceGallery.qml b/src/ui/DeviceGallery.qml index d361142..15fc40e 100644 --- a/src/ui/DeviceGallery.qml +++ b/src/ui/DeviceGallery.qml @@ -116,6 +116,7 @@ Item { Layout.fillHeight: true visible: albumId ? false : query.albums interactive: true + clip:true // FIXME: only available in Qt 6.9 acceptedButtons : Qt.NoButton cellWidth: 250