mirror of
https://github.com/monero-project/monero-gui.git
synced 2025-03-16 08:32:19 +00:00
transfer: make simple mode more simple
This commit is contained in:
parent
d2c47606ca
commit
63ee61b8c4
1 changed files with 2 additions and 1 deletions
|
@ -127,7 +127,7 @@ Rectangle {
|
||||||
}
|
}
|
||||||
|
|
||||||
GridLayout {
|
GridLayout {
|
||||||
columns: (isMobile)? 1 : 2
|
columns: (isMobile || !(appWindow.walletMode >= 2)) ? 1 : 2
|
||||||
Layout.fillWidth: true
|
Layout.fillWidth: true
|
||||||
columnSpacing: 32
|
columnSpacing: 32
|
||||||
|
|
||||||
|
@ -165,6 +165,7 @@ Rectangle {
|
||||||
}
|
}
|
||||||
|
|
||||||
ColumnLayout {
|
ColumnLayout {
|
||||||
|
visible: appWindow.walletMode >= 2
|
||||||
Layout.fillWidth: true
|
Layout.fillWidth: true
|
||||||
Label {
|
Label {
|
||||||
id: transactionPriority
|
id: transactionPriority
|
||||||
|
|
Loading…
Reference in a new issue