diff --git a/ui/app/AppLayouts/Profile/controls/WalletKeyPairDelegate.qml b/ui/app/AppLayouts/Profile/controls/WalletKeyPairDelegate.qml index 045827eedd..d5b08f35d2 100644 --- a/ui/app/AppLayouts/Profile/controls/WalletKeyPairDelegate.qml +++ b/ui/app/AppLayouts/Profile/controls/WalletKeyPairDelegate.qml @@ -108,12 +108,28 @@ Rectangle { spacing: 1 model: d.relatedAccounts delegate: WalletAccountDelegate { + id: walletAccountDelegate width: ListView.view.width - label: keyPair.pairType !== Constants.keypair.type.watchOnly ? "" : model.account.hideFromTotalBalance ? qsTr("Excl. from total balance"): qsTr("Incl. in total balance") account: model.account totalCount: ListView.view.count getNetworkShortNames: root.getNetworkShortNames onGoToAccountView: root.goToAccountView(model.account) + + RowLayout { + anchors.verticalCenter: parent.verticalCenter + anchors.right: parent.right + anchors.rightMargin: Style.current.padding + walletAccountDelegate.statusListItemComponentsSlot.width + visible: keyPair.pairType === Constants.keypair.type.watchOnly + + StatusIcon { + icon: "wallet" + color: Theme.palette.baseColor1 + } + StatusBaseText { + text: model.account.hideFromTotalBalance ? qsTr("Excluded") : qsTr("Included") + color: Theme.palette.baseColor1 + } + } } } } diff --git a/ui/app/AppLayouts/Profile/views/wallet/AccountView.qml b/ui/app/AppLayouts/Profile/views/wallet/AccountView.qml index 342fcfac95..2a7be57f52 100644 --- a/ui/app/AppLayouts/Profile/views/wallet/AccountView.qml +++ b/ui/app/AppLayouts/Profile/views/wallet/AccountView.qml @@ -229,7 +229,7 @@ ColumnLayout { StatusListItem { Layout.fillWidth: true - title: qsTr("Include in total balance") + title: qsTr("Include in total balances and activity") objectName: "includeTotalBalanceListItem" visible: d.watchOnlyAccount color: Theme.palette.transparent diff --git a/ui/app/AppLayouts/Wallet/views/AccountContextMenu.qml b/ui/app/AppLayouts/Wallet/views/AccountContextMenu.qml index 443ac3f337..9ce1500fde 100644 --- a/ui/app/AppLayouts/Wallet/views/AccountContextMenu.qml +++ b/ui/app/AppLayouts/Wallet/views/AccountContextMenu.qml @@ -47,7 +47,8 @@ StatusMenu { StatusAction { objectName: "AccountMenu-HideFromTotalBalance-%1".arg(root.uniqueIdentifier) enabled: !!root.account && root.account.walletType === Constants.watchWalletType - text: !!root.account ? root.account.hideFromTotalBalance ? qsTr("Include in total balance"): qsTr("Exclude from total balance"): "" + text: !!root.account ? root.account.hideFromTotalBalance ? qsTr("Include in balances and activity") + : qsTr("Exclude from balances and activity") : "" icon.name: !!root.account ? root.account.hideFromTotalBalance ? "show" : "hide": "" onTriggered: root.hideFromTotalBalanceClicked(root.account.address, !root.account.hideFromTotalBalance) }