fix(BackUpCommuntyBannerPanel): StatusButton port fix

the `clicked()` signal has no longer any parameter
This commit is contained in:
Lukáš Tinkl 2022-09-14 12:37:05 +02:00 committed by Lukáš Tinkl
parent 55cb3cbf33
commit fda78a1003
2 changed files with 3 additions and 3 deletions

@ -1 +1 @@
Subproject commit 1381b1bd152e8db1da4fd0cf93ec90d3206b9815 Subproject commit 9a24d59ea86b68d0279df6fdb2a85fd93778bad0

View File

@ -10,7 +10,7 @@ import utils 1.0
Rectangle { Rectangle {
property string communityId property string communityId
signal backupButtonClicked(var mouse) signal backupButtonClicked()
id: root id: root
height: childrenRect.height + Style.current.padding height: childrenRect.height + Style.current.padding
@ -83,7 +83,7 @@ Rectangle {
anchors.horizontalCenter: parent.horizontalCenter anchors.horizontalCenter: parent.horizontalCenter
anchors.top: backUpText.bottom anchors.top: backUpText.bottom
anchors.topMargin: Style.current.padding anchors.topMargin: Style.current.padding
onClicked: root.backupButtonClicked(mouse) onClicked: root.backupButtonClicked()
} }
} }