fix(dApps): improved logic for the connected dApps list to always display as many dApps as possible. (#15837)

Fixes: #15595.
This commit is contained in:
Roman Chornii 2024-07-29 21:41:09 +03:00 committed by GitHub
parent 41b37def71
commit 3cad15111e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 9 additions and 1 deletions

View File

@ -88,7 +88,15 @@ Popup {
id: listViewWrapper
Layout.fillWidth: true
Layout.preferredHeight: listView.contentHeight
Layout.maximumHeight: 290
// TODO: uncomment maximumHeight: 290 and remove fillHeight: true
// after status app upgrades to
// a Qt version that has ListView scrolling with mouse wheel and
// touchpad fixed.
// https://github.com/status-im/status-desktop/issues/15595
// Layout.maximumHeight: 290
Layout.fillHeight: true
visible: !listPlaceholder.visible
Rectangle {