diff --git a/pages/settings/SettingsInfo.qml b/pages/settings/SettingsInfo.qml index 98e47cf6..4492babe 100644 --- a/pages/settings/SettingsInfo.qml +++ b/pages/settings/SettingsInfo.qml @@ -1,6 +1,7 @@ import QtQuick 2.7 import QtQuick.Layouts 1.1 import QtQuick.Controls 2.0 +import QtQuick.Dialogs 1.2 import "../../js/Utils.js" as Utils import "../../version.js" as Version @@ -122,10 +123,12 @@ Rectangle { MoneroComponents.TextBlock { id: restoreHeightText + Layout.fillWidth: true textFormat: Text.RichText font.pixelSize: 14 + font.bold: true property var style: "" - text: (currentWallet ? currentWallet.walletCreationHeight : "") + style + qsTr(" (change)") + translationManager.emptyString + text: (currentWallet ? currentWallet.walletCreationHeight : "") + style + qsTr(" (Click to change)") + translationManager.emptyString onLinkActivated: { inputDialog.labelText = qsTr("Set a new restore height:") + translationManager.emptyString; inputDialog.inputText = currentWallet ? currentWallet.walletCreationHeight : "0";