diff --git a/src/qml/components/ConnectionOptions.qml b/src/qml/components/ConnectionOptions.qml index be016fe8dc..e0c4079d7e 100644 --- a/src/qml/components/ConnectionOptions.qml +++ b/src/qml/components/ConnectionOptions.qml @@ -31,13 +31,5 @@ ColumnLayout { ButtonGroup.group: group text: qsTr("Only when on Wi-Fi") description: qsTr("Loads quickly when on wi-fi and pauses when on cellular data.") - detail: ProgressIndicator { - implicitWidth: 50 - SequentialAnimation on progress { - loops: Animation.Infinite - SmoothedAnimation { to: 1; velocity: 1; } - SmoothedAnimation { to: 0; velocity: 1; } - } - } } } diff --git a/src/qml/components/StorageLocations.qml b/src/qml/components/StorageLocations.qml index fde4e0a8af..241477e775 100644 --- a/src/qml/components/StorageLocations.qml +++ b/src/qml/components/StorageLocations.qml @@ -15,15 +15,15 @@ ColumnLayout { OptionButton { Layout.fillWidth: true ButtonGroup.group: group - text: qsTr("Default directory") - description: qsTr("The downloaded block data will be saved to the default data directory for your OS.") + text: qsTr("Default") + description: qsTr("Your application directory.") recommended: true checked: true } OptionButton { Layout.fillWidth: true ButtonGroup.group: group - text: qsTr("Custom directory") - description: qsTr("The downloaded block data will be saved to the chosen directory.") + text: qsTr("Custom") + description: qsTr("Choose the directory and storage device.") } } diff --git a/src/qml/components/StorageOptions.qml b/src/qml/components/StorageOptions.qml index f25a892368..fbd1f2aa33 100644 --- a/src/qml/components/StorageOptions.qml +++ b/src/qml/components/StorageOptions.qml @@ -16,22 +16,14 @@ ColumnLayout { Layout.fillWidth: true ButtonGroup.group: group text: qsTr("Reduce storage") - description: qsTr("Uses about 2GB.") + description: qsTr("Uses about 2GB. For simple wallet use.") recommended: true checked: true - detail: ProgressIndicator { - implicitWidth: 75 - progress: 0.25 - } } OptionButton { Layout.fillWidth: true ButtonGroup.group: group - text: qsTr("Default") - description: qsTr("Uses about 423GB.") - detail: ProgressIndicator { - implicitWidth: 75 - progress: 0.8 - } + text: qsTr("Store all data") + description: qsTr("Uses about 550GB. Support the network.") } } diff --git a/src/qml/controls/OptionButton.qml b/src/qml/controls/OptionButton.qml index 97485fb1eb..b40c9b752e 100644 --- a/src/qml/controls/OptionButton.qml +++ b/src/qml/controls/OptionButton.qml @@ -12,7 +12,6 @@ Button { id: button padding: 15 checkable: true - property alias detail: detail_loader.sourceComponent implicitWidth: 450 background: Rectangle { border.width: 1 @@ -67,7 +66,15 @@ Button { } Loader { id: detail_loader - visible: item + visible: button.checked + active: true + sourceComponent: Button { + icon.source: "image://images/check" + icon.color: Theme.color.neutral9 + icon.height: 24 + icon.width: 24 + background: null + } } } } diff --git a/src/qml/pages/onboarding/OnboardingStorageLocation.qml b/src/qml/pages/onboarding/OnboardingStorageLocation.qml index 030bbebfc9..c4d2f770f9 100644 --- a/src/qml/pages/onboarding/OnboardingStorageLocation.qml +++ b/src/qml/pages/onboarding/OnboardingStorageLocation.qml @@ -19,7 +19,7 @@ InformationPage { bold: true headerText: qsTr("Storage location") headerMargin: 0 - description: qsTr("Where do you want to store the downloaded block data?") + description: qsTr("Where do you want to store the downloaded block data?\nYou need a minimum of 1GB of storage.") descriptionMargin: 20 detailActive: true detailItem: ColumnLayout {