fix(wallet): unbreak scrolling of the wallet views

Fixes #13157
This commit is contained in:
Lukáš Tinkl 2024-01-10 10:27:11 +01:00 committed by Lukáš Tinkl
parent 8144ccaf46
commit f80f4abb0b
2 changed files with 4 additions and 8 deletions

View File

@ -19,15 +19,10 @@ FocusScope {
property alias headerButton: header.headerButton property alias headerButton: header.headerButton
property alias networkFilter: header.networkFilter property alias networkFilter: header.networkFilter
default property Item content default property alias content: contentWrapper.children
Component.onCompleted: {
content.parent = contentWrapper
}
ColumnLayout { ColumnLayout {
anchors.left: parent.left anchors.fill: parent
anchors.right: parent.right
spacing: 0 spacing: 0
WalletHeader { WalletHeader {
@ -42,6 +37,7 @@ FocusScope {
Column { Column {
id: contentWrapper id: contentWrapper
Layout.fillWidth: true Layout.fillWidth: true
Layout.fillHeight: true
} }
} }
} }

View File

@ -39,7 +39,7 @@ RightTabBaseView {
StackLayout { StackLayout {
id: stack id: stack
width: parent.width anchors.fill: parent
Connections { Connections {
target: walletSection target: walletSection