From 8dfba676f47430a7a1975b4bf1a68040976f5fa9 Mon Sep 17 00:00:00 2001 From: taushet Date: Wed, 2 Nov 2016 14:32:14 +0100 Subject: [PATCH] Switch button position on password modal Buttons are the wrong way around (against convention) Not tested. --- components/PasswordDialog.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/PasswordDialog.qml b/components/PasswordDialog.qml index 69a2ae91..80447245 100644 --- a/components/PasswordDialog.qml +++ b/components/PasswordDialog.qml @@ -37,7 +37,7 @@ import QtQuick.Controls.Styles 1.4 Dialog { id: root property alias password: passwordInput.text - standardButtons: StandardButton.Ok + StandardButton.Cancel + standardButtons: StandardButton.Cancel + StandardButton.Ok ColumnLayout { id: column anchors.fill: parent