mirror of
https://github.com/monero-project/monero-gui
synced 2024-12-19 04:45:53 +01:00
replace message dialog with custom dialog
This commit is contained in:
parent
d4657804cd
commit
5a110f410f
8
main.qml
8
main.qml
@ -685,11 +685,11 @@ ApplicationWindow {
|
||||
// TODO: replace with customized popups
|
||||
|
||||
// Information dialog
|
||||
MessageDialog {
|
||||
StandardDialog {
|
||||
// dynamically change onclose handler
|
||||
property var onCloseCallback
|
||||
id: informationPopup
|
||||
standardButtons: StandardButton.Ok
|
||||
cancelVisible: false
|
||||
onAccepted: {
|
||||
if (onCloseCallback) {
|
||||
onCloseCallback()
|
||||
@ -698,10 +698,10 @@ ApplicationWindow {
|
||||
}
|
||||
|
||||
// Confrirmation aka question dialog
|
||||
MessageDialog {
|
||||
StandardDialog {
|
||||
id: transactionConfirmationPopup
|
||||
standardButtons: StandardButton.Ok + StandardButton.Cancel
|
||||
onAccepted: {
|
||||
close();
|
||||
handleTransactionConfirmed()
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user