mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-11-16 15:58:11 +00:00
daemonManagerDialog: added starting signal
This commit is contained in:
parent
3a431543fa
commit
5855700007
1 changed files with 3 additions and 2 deletions
|
@ -41,6 +41,7 @@ Window {
|
|||
flags: Qt.Window | Qt.FramelessWindowHint
|
||||
|
||||
signal rejected()
|
||||
signal started();
|
||||
|
||||
function open() {
|
||||
show()
|
||||
|
@ -91,7 +92,7 @@ Window {
|
|||
onClicked: {
|
||||
daemonManager.start();
|
||||
root.close()
|
||||
// root.accepted()
|
||||
root.started()
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -106,8 +107,8 @@ Window {
|
|||
text: qsTr("Cancel")
|
||||
|
||||
onClicked: {
|
||||
root.rejected()
|
||||
root.close()
|
||||
root.rejected()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue