mirror of
https://github.com/monero-project/monero-gui
synced 2024-12-11 08:33:55 +01:00
commit
3b23446c31
@ -90,14 +90,26 @@ Rectangle {
|
||||
source: "images/moneroLogo.png"
|
||||
}
|
||||
|
||||
Text {
|
||||
id: viewOnlyLabel
|
||||
visible: viewOnly
|
||||
text: qsTr("View Only") + translationManager.emptyString
|
||||
anchors.top: logo.bottom
|
||||
anchors.topMargin: 5
|
||||
anchors.left: parent.left
|
||||
anchors.leftMargin: 50
|
||||
font.bold: true
|
||||
color: "blue"
|
||||
}
|
||||
|
||||
Text {
|
||||
id: testnetLabel
|
||||
visible: persistentSettings.testnet
|
||||
text: qsTr("Testnet") + translationManager.emptyString
|
||||
anchors.top: logo.bottom
|
||||
anchors.topMargin: 5
|
||||
anchors.left: parent.left
|
||||
anchors.leftMargin: 50
|
||||
anchors.left: viewOnly ? viewOnlyLabel.right : parent.left
|
||||
anchors.leftMargin: viewOnly ? 10 : 50
|
||||
font.bold: true
|
||||
color: "red"
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user