diff --git a/ui/StatusQ b/ui/StatusQ index cff836280f..9738890d9d 160000 --- a/ui/StatusQ +++ b/ui/StatusQ @@ -1 +1 @@ -Subproject commit cff836280f3b9e1671518568fe1884f286b36054 +Subproject commit 9738890d9de4aaf9bc1bdcc3fb5435d1bdeb1e3d diff --git a/ui/app/AppLayouts/Chat/panels/communities/CommunityProfilePopupOverviewPanel.qml b/ui/app/AppLayouts/Chat/panels/communities/CommunityProfilePopupOverviewPanel.qml index 98286bc783..dc4e4f01ad 100644 --- a/ui/app/AppLayouts/Chat/panels/communities/CommunityProfilePopupOverviewPanel.qml +++ b/ui/app/AppLayouts/Chat/panels/communities/CommunityProfilePopupOverviewPanel.qml @@ -74,10 +74,7 @@ Column { StatusListItem { anchors.horizontalCenter: parent.horizontalCenter title: qsTr("Leave community") - icon.name: "arrow-right" - icon.height: 16 - icon.width: 20 - icon.rotation: 180 + icon.name: "arrow-left" type: StatusListItem.Type.Danger sensor.onClicked: root.leaveButtonClicked() } diff --git a/ui/app/AppLayouts/Chat/popups/ChatCommandModal.qml b/ui/app/AppLayouts/Chat/popups/ChatCommandModal.qml index 7f01ec4365..d6fd56b9da 100644 --- a/ui/app/AppLayouts/Chat/popups/ChatCommandModal.qml +++ b/ui/app/AppLayouts/Chat/popups/ChatCommandModal.qml @@ -143,12 +143,8 @@ StatusModal { } leftButtons: [ - StatusRoundButton { + StatusBackButton { visible: !stack.isFirstGroup - icon.name: "arrow-right" - icon.width: 20 - icon.height: 16 - rotation: 180 onClicked: { stack.back() } diff --git a/ui/app/AppLayouts/Chat/popups/GroupInfoPopup.qml b/ui/app/AppLayouts/Chat/popups/GroupInfoPopup.qml index f7be60db31..0df09a991d 100644 --- a/ui/app/AppLayouts/Chat/popups/GroupInfoPopup.qml +++ b/ui/app/AppLayouts/Chat/popups/GroupInfoPopup.qml @@ -252,12 +252,8 @@ StatusModal { } leftButtons: [ - StatusRoundButton { + StatusBackButton { visible: popup.addMembers - icon.name: "arrow-right" - icon.width: 20 - icon.height: 16 - icon.rotation: 180 onClicked: { popup.addMembers = false; popup.resetSelectedMembers(); diff --git a/ui/app/AppLayouts/Chat/popups/community/CommunityDetailPopup.qml b/ui/app/AppLayouts/Chat/popups/community/CommunityDetailPopup.qml index cc89736a45..bdb8e38e8e 100644 --- a/ui/app/AppLayouts/Chat/popups/community/CommunityDetailPopup.qml +++ b/ui/app/AppLayouts/Chat/popups/community/CommunityDetailPopup.qml @@ -131,12 +131,8 @@ StatusModal { leftButtons: [ - StatusRoundButton { + StatusBackButton { id: backButton - icon.name: "arrow-right" - icon.height: 16 - icon.width: 20 - rotation: 180 onClicked: { root.close() } diff --git a/ui/app/AppLayouts/Chat/popups/community/CommunityProfilePopup.qml b/ui/app/AppLayouts/Chat/popups/community/CommunityProfilePopup.qml index ef3f9c004a..19c60359d0 100644 --- a/ui/app/AppLayouts/Chat/popups/community/CommunityProfilePopup.qml +++ b/ui/app/AppLayouts/Chat/popups/community/CommunityProfilePopup.qml @@ -102,12 +102,8 @@ StatusModal { } leftButtons: [ - StatusRoundButton { + StatusBackButton { id: backButton - icon.name: "arrow-right" - icon.height: 16 - icon.width: 20 - rotation: 180 visible: contentItem.depth > 1 height: !visible ? 0 : implicitHeight onClicked: { diff --git a/ui/app/AppLayouts/Chat/popups/community/InviteFriendsToCommunityPopup.qml b/ui/app/AppLayouts/Chat/popups/community/InviteFriendsToCommunityPopup.qml index fef4ff445b..7e58745a40 100644 --- a/ui/app/AppLayouts/Chat/popups/community/InviteFriendsToCommunityPopup.qml +++ b/ui/app/AppLayouts/Chat/popups/community/InviteFriendsToCommunityPopup.qml @@ -57,11 +57,7 @@ StatusModal { } leftButtons: [ - StatusRoundButton { - icon.name: "arrow-right" - icon.height: 16 - icon.width: 20 - rotation: 180 + StatusBackButton { onClicked: { popup.close() } diff --git a/ui/app/AppLayouts/Chat/popups/community/MembershipRequestsPopup.qml b/ui/app/AppLayouts/Chat/popups/community/MembershipRequestsPopup.qml index 205df9e0ff..e02ccecd26 100644 --- a/ui/app/AppLayouts/Chat/popups/community/MembershipRequestsPopup.qml +++ b/ui/app/AppLayouts/Chat/popups/community/MembershipRequestsPopup.qml @@ -98,11 +98,7 @@ StatusModal { } leftButtons: [ - StatusRoundButton { - icon.name: "arrow-right" - icon.width: 20 - icon.height: 16 - rotation: 180 + StatusBackButton { onClicked: popup.close() } ] diff --git a/ui/app/AppLayouts/Chat/popups/community/TransferOwnershipPopup.qml b/ui/app/AppLayouts/Chat/popups/community/TransferOwnershipPopup.qml index 97a42a53ff..f7116d2474 100644 --- a/ui/app/AppLayouts/Chat/popups/community/TransferOwnershipPopup.qml +++ b/ui/app/AppLayouts/Chat/popups/community/TransferOwnershipPopup.qml @@ -74,11 +74,7 @@ StatusModal { } leftButtons: [ - StatusRoundButton { - icon.name: "arrow-right" - icon.height: 16 - icon.width: 20 - rotation: 180 + StatusBackButton { onClicked: { root.close() } diff --git a/ui/app/mainui/AppMain.qml b/ui/app/mainui/AppMain.qml index e11aa4d0ca..f63242feab 100644 --- a/ui/app/mainui/AppMain.qml +++ b/ui/app/mainui/AppMain.qml @@ -329,9 +329,7 @@ Item { StatusMenuItem { text: qsTr("Leave Community") - icon.name: "arrow-right" - icon.width: 14 - iconRotation: 180 + icon.name: "arrow-left" type: StatusMenuItem.Type.Danger onTriggered: communityContextMenu.chatCommunitySectionModule.leaveCommunity() } diff --git a/ui/imports/shared/popups/SignTransactionModal.qml b/ui/imports/shared/popups/SignTransactionModal.qml index 3ea729bb7e..0047bee1c5 100644 --- a/ui/imports/shared/popups/SignTransactionModal.qml +++ b/ui/imports/shared/popups/SignTransactionModal.qml @@ -256,12 +256,8 @@ StatusModal { } leftButtons: [ - StatusRoundButton { + StatusBackButton { id: btnBack - icon.name: "arrow-right" - icon.width: 20 - icon.height: 16 - icon.rotation: 180 visible: stack.currentGroup.showBackBtn enabled: stack.currentGroup.isValid || stack.isLastGroup onClicked: { diff --git a/ui/imports/shared/status/StatusETHTransactionModal.qml b/ui/imports/shared/status/StatusETHTransactionModal.qml index 427cb5fe23..50b0a88447 100644 --- a/ui/imports/shared/status/StatusETHTransactionModal.qml +++ b/ui/imports/shared/status/StatusETHTransactionModal.qml @@ -180,13 +180,9 @@ ModalPopup { width: parent.width height: btnNext.height - StatusRoundButton { + StatusBackButton { id: btnBack anchors.left: parent.left - icon.name: "arrow-right" - icon.width: 20 - icon.height: 16 - icon.rotation: 180 visible: stack.currentGroup.showBackBtn enabled: stack.currentGroup.isValid || stack.isLastGroup onClicked: { diff --git a/ui/imports/shared/status/StatusSNTTransactionModal.qml b/ui/imports/shared/status/StatusSNTTransactionModal.qml index 8e067c6b01..16a8be39f6 100644 --- a/ui/imports/shared/status/StatusSNTTransactionModal.qml +++ b/ui/imports/shared/status/StatusSNTTransactionModal.qml @@ -198,13 +198,9 @@ ModalPopup { width: parent.width height: btnNext.height - StatusRoundButton { + StatusBackButton { id: btnBack anchors.left: parent.left - icon.name: "arrow-right" - icon.width: 20 - icon.height: 16 - icon.rotation: 180 visible: stack.currentGroup.showBackBtn enabled: { stack.currentGroup.isValid || stack.isLastGroup