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
This commit is contained in:
parent
9db48a986a
commit
d537807fbd
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue