1
0

qml: show channel backups together with channels in Channels, remove Channel backups button from WalletDetails,

filter backups to bottom, add backups section header
This commit is contained in:
Sander van Grieken
2023-03-14 10:06:31 +01:00
parent acc1f22442
commit c0ce0296f8
3 changed files with 32 additions and 13 deletions

View File

@@ -527,16 +527,6 @@ Pane {
visible: Daemon.currentWallet && Daemon.currentWallet.canHaveLightning && !Daemon.currentWallet.isLightning
icon.source: '../../icons/lightning.png'
}
FlatButton {
Layout.fillWidth: true
Layout.preferredWidth: 1
text: qsTr('Channel backups')
visible: Daemon.currentWallet && Daemon.currentWallet.isLightning
icon.source: '../../icons/lightning.png'
onClicked: {
app.stack.push(Qt.resolvedUrl('ChannelBackups.qml'))
}
}
}
}