Merge pull request #95

550087f PasswordDialog: accept/reject with Enter/Esc, Tab navigation (Ilya Kitaev)
513f7eb StandardButton: indicating "focused" state (Ilya Kitaev)
7973d0c Custom password dialog. fixes issue with standard dialog (Ilya Kitaev)
This commit is contained in:
Riccardo Spagni
2016-11-05 10:08:50 +02:00
4 changed files with 138 additions and 27 deletions

View File

@@ -61,7 +61,7 @@ Rectangle {
PasswordDialog {
id: settingsPasswordDialog
standardButtons: StandardButton.Ok + StandardButton.Cancel
onAccepted: {
if(appWindow.password === settingsPasswordDialog.password){
memoTextInput.text = currentWallet.seed
@@ -72,9 +72,7 @@ Rectangle {
onRejected: {
}
onDiscard: {
}
}