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

Fixes: #15595.
This commit is contained in:
Roman Chornii 2024-08-06 16:55:00 +03:00 committed by GitHub
parent a0d540c558
commit 4ba3cea925
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 9 additions and 1 deletions

View File

@ -105,7 +105,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 {