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:
parent
a0d540c558
commit
4ba3cea925
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue