diff options
| author | thotbot <thotbot@protonmail.com> | 2019-12-21 13:37:15 +0000 |
|---|---|---|
| committer | xiphon <xiphon@protonmail.com> | 2020-04-05 13:07:11 +0000 |
| commit | 6d7db135e7f9c131370f91637d6cd197f4dc74c1 (patch) | |
| tree | 0e3bc5179ac2bacedcea9b4071edbf1c5e32c395 /pages | |
| parent | cee56a7d239f44cc7e0b5ca6c397b9893200e5f8 (diff) | |
| download | monzero-gui-6d7db135e7f9c131370f91637d6cd197f4dc74c1.tar.gz monzero-gui-6d7db135e7f9c131370f91637d6cd197f4dc74c1.tar.xz monzero-gui-6d7db135e7f9c131370f91637d6cd197f4dc74c1.zip | |
Settings: rework wallet page
Diffstat (limited to 'pages')
| -rw-r--r-- | pages/settings/SettingsWallet.qml | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/pages/settings/SettingsWallet.qml b/pages/settings/SettingsWallet.qml index 877508d9..da9b5e60 100644 --- a/pages/settings/SettingsWallet.qml +++ b/pages/settings/SettingsWallet.qml @@ -30,6 +30,7 @@ import QtQuick 2.9 import QtQuick.Layouts 1.1 import QtQuick.Controls 2.0 import QtQuick.Dialogs 1.2 +import FontAwesome 1.0 import "../../js/Utils.js" as Utils import "../../components" as MoneroComponents @@ -47,10 +48,10 @@ Rectangle { anchors.right: parent.right anchors.margins: 20 anchors.topMargin: 0 - spacing: 8 + spacing: 0 MoneroComponents.SettingsListItem { - buttonText: qsTr("Close wallet") + translationManager.emptyString + iconText: FontAwesome.signOutAlt description: qsTr("Logs out of this wallet.") + translationManager.emptyString title: qsTr("Close this wallet") + translationManager.emptyString @@ -58,7 +59,7 @@ Rectangle { } MoneroComponents.SettingsListItem { - buttonText: qsTr("Create wallet") + translationManager.emptyString + iconText: FontAwesome.eye description: qsTr("Creates a new wallet that can only view and initiate transactions, but requires a spendable wallet to sign transactions before sending.") + translationManager.emptyString title: qsTr("Create a view-only wallet") + translationManager.emptyString visible: !appWindow.viewOnly @@ -80,7 +81,7 @@ Rectangle { } MoneroComponents.SettingsListItem { - buttonText: qsTr("Show seed") + translationManager.emptyString + iconText: FontAwesome.key description: qsTr("Store this information safely to recover your wallet in the future.") + translationManager.emptyString title: qsTr("Show seed & keys") + translationManager.emptyString @@ -90,7 +91,7 @@ Rectangle { } MoneroComponents.SettingsListItem { - buttonText: qsTr("Rescan") + translationManager.emptyString + iconText: FontAwesome.repeat description: qsTr("Use this feature if you think the shown balance is not accurate.") + translationManager.emptyString title: qsTr("Rescan wallet balance") + translationManager.emptyString visible: appWindow.walletMode >= 2 @@ -114,7 +115,8 @@ Rectangle { } MoneroComponents.SettingsListItem { - buttonText: qsTr("Change password") + translationManager.emptyString + iconText: FontAwesome.ellipsisH + isLast: true description: qsTr("Change the password of your wallet.") + translationManager.emptyString title: qsTr("Change wallet password") + translationManager.emptyString |
