move OK button to the right in confirm exit dialog

pull/2/head
Jaquee 7 years ago
parent bce496b8d1
commit 01e735cc0e

@ -102,34 +102,34 @@ Window {
Layout.alignment: Qt.AlignHCenter
MoneroComponents.StandardButton {
id: okButton
id: cancelButton
width: 120
fontSize: 14
shadowReleasedColor: "#FF4304"
shadowPressedColor: "#B32D00"
releasedColor: "#FF6C3C"
pressedColor: "#FF4304"
text: qsTr("Ok")
KeyNavigation.tab: cancelButton
text: qsTr("Cancel")
onClicked: {
root.close()
root.accepted()
root.rejected()
}
}
MoneroComponents.StandardButton {
id: cancelButton
id: okButton
width: 120
fontSize: 14
shadowReleasedColor: "#FF4304"
shadowPressedColor: "#B32D00"
releasedColor: "#FF6C3C"
pressedColor: "#FF4304"
text: qsTr("Cancel")
text: qsTr("Ok")
KeyNavigation.tab: cancelButton
onClicked: {
root.close()
root.rejected()
root.accepted()
}
}
}