mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-12-23 12:09:57 +00:00
StandardDialog: reset button text on close
This commit is contained in:
parent
585fb2810d
commit
4b0dcb95bf
3 changed files with 4 additions and 2 deletions
|
@ -90,6 +90,10 @@ Rectangle {
|
||||||
|
|
||||||
function close() {
|
function close() {
|
||||||
root.visible = false;
|
root.visible = false;
|
||||||
|
// reset button text
|
||||||
|
okButton.text = qsTr("OK")
|
||||||
|
cancelButton.text = qsTr("Cancel")
|
||||||
|
|
||||||
closeCallback();
|
closeCallback();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
1
main.qml
1
main.qml
|
@ -1481,7 +1481,6 @@ ApplicationWindow {
|
||||||
confirmationDialog.text += qsTr("Note: lmdb folder not found. A new folder will be created.") + "\n\n"
|
confirmationDialog.text += qsTr("Note: lmdb folder not found. A new folder will be created.") + "\n\n"
|
||||||
|
|
||||||
confirmationDialog.icon = StandardIcon.Question
|
confirmationDialog.icon = StandardIcon.Question
|
||||||
confirmationDialog.cancelText = qsTr("Cancel")
|
|
||||||
|
|
||||||
// Continue
|
// Continue
|
||||||
confirmationDialog.onAcceptedCallback = function() {
|
confirmationDialog.onAcceptedCallback = function() {
|
||||||
|
|
|
@ -212,7 +212,6 @@ Rectangle {
|
||||||
+ "The old wallet cache file will be renamed and can be restored later.\n"
|
+ "The old wallet cache file will be renamed and can be restored later.\n"
|
||||||
);
|
);
|
||||||
confirmationDialog.icon = StandardIcon.Question
|
confirmationDialog.icon = StandardIcon.Question
|
||||||
confirmationDialog.cancelText = qsTr("Cancel")
|
|
||||||
confirmationDialog.onAcceptedCallback = function() {
|
confirmationDialog.onAcceptedCallback = function() {
|
||||||
appWindow.closeWallet(function() {
|
appWindow.closeWallet(function() {
|
||||||
walletManager.clearWalletCache(persistentSettings.wallet_path);
|
walletManager.clearWalletCache(persistentSettings.wallet_path);
|
||||||
|
|
Loading…
Reference in a new issue