From d537807fbdaaa7099e00b74f4ac1fbe8ab035a24 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Tinkl?= Date: Mon, 5 Feb 2024 12:06:05 +0100 Subject: [PATCH] fix: [Community Settings] Tokens page is not scrollable... ... from within the gridView Set the ListView/GridView `interactive: false` to unbreak touchpad scrolling; those views are unrolled anyway Fixes #11959 --- ui/app/AppLayouts/Communities/views/MintedTokensView.qml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ui/app/AppLayouts/Communities/views/MintedTokensView.qml b/ui/app/AppLayouts/Communities/views/MintedTokensView.qml index 24243ea49e..d0d4bd1eef 100644 --- a/ui/app/AppLayouts/Communities/views/MintedTokensView.qml +++ b/ui/app/AppLayouts/Communities/views/MintedTokensView.qml @@ -167,13 +167,14 @@ StatusScrollView { Layout.fillWidth: true Layout.preferredHeight: contentHeight + interactive: false visible: count > 0 model: assetsModel delegate: StatusListItem { height: 64 - width: mainLayout.width + width: ListView.view.width title: model.name ?? "" subTitle: model.symbol ?? "" asset.name: model.image ? model.image : "" @@ -221,6 +222,7 @@ StatusScrollView { Layout.fillWidth: true Layout.preferredHeight: childrenRect.height + interactive: false visible: count > 0 model: SortFilterProxyModel {