mirror of
https://github.com/monero-project/monero-gui.git
synced 2025-01-06 01:42:06 +02:00
SettingsNode: blockchain location 'Reset' button
This commit is contained in:
parent
386c5e3d30
commit
d21c22b444
@ -382,14 +382,12 @@ Rectangle{
|
|||||||
labelFontSize: 14
|
labelFontSize: 14
|
||||||
property string style: "<style type='text/css'>a {cursor:pointer;text-decoration: none; color: #FF6C3C}</style>"
|
property string style: "<style type='text/css'>a {cursor:pointer;text-decoration: none; color: #FF6C3C}</style>"
|
||||||
labelText: qsTr("Blockchain location") + style + " <a href='#'> (%1)</a>".arg(qsTr("Change")) + translationManager.emptyString
|
labelText: qsTr("Blockchain location") + style + " <a href='#'> (%1)</a>".arg(qsTr("Change")) + translationManager.emptyString
|
||||||
|
labelButtonText: qsTr("Reset") + translationManager.emptyString
|
||||||
|
labelButtonVisible: text
|
||||||
placeholderText: qsTr("(default)") + translationManager.emptyString
|
placeholderText: qsTr("(default)") + translationManager.emptyString
|
||||||
placeholderFontSize: 15
|
placeholderFontSize: 15
|
||||||
readOnly: true
|
readOnly: true
|
||||||
text: {
|
text: persistentSettings.blockchainDataDir
|
||||||
if(persistentSettings.blockchainDataDir.length > 0){
|
|
||||||
return persistentSettings.blockchainDataDir;
|
|
||||||
} else { return "" }
|
|
||||||
}
|
|
||||||
addressValidation: false
|
addressValidation: false
|
||||||
onInputLabelLinkActivated: {
|
onInputLabelLinkActivated: {
|
||||||
//mouse.accepted = false
|
//mouse.accepted = false
|
||||||
@ -399,6 +397,7 @@ Rectangle{
|
|||||||
blockchainFileDialog.open();
|
blockchainFileDialog.open();
|
||||||
blockchainFolder.focus = true;
|
blockchainFolder.focus = true;
|
||||||
}
|
}
|
||||||
|
onLabelButtonClicked: persistentSettings.blockchainDataDir = ""
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user