mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-12-23 03:59:38 +00:00
Switch button position on password modal
Buttons are the wrong way around (against convention) Not tested.
This commit is contained in:
parent
6c6b10855f
commit
8dfba676f4
1 changed files with 1 additions and 1 deletions
|
@ -37,7 +37,7 @@ import QtQuick.Controls.Styles 1.4
|
||||||
Dialog {
|
Dialog {
|
||||||
id: root
|
id: root
|
||||||
property alias password: passwordInput.text
|
property alias password: passwordInput.text
|
||||||
standardButtons: StandardButton.Ok + StandardButton.Cancel
|
standardButtons: StandardButton.Cancel + StandardButton.Ok
|
||||||
ColumnLayout {
|
ColumnLayout {
|
||||||
id: column
|
id: column
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
|
|
Loading…
Reference in a new issue