mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-11-17 08:17:59 +00:00
commit
3b23446c31
1 changed files with 14 additions and 2 deletions
|
@ -90,14 +90,26 @@ Rectangle {
|
||||||
source: "images/moneroLogo.png"
|
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 {
|
Text {
|
||||||
id: testnetLabel
|
id: testnetLabel
|
||||||
visible: persistentSettings.testnet
|
visible: persistentSettings.testnet
|
||||||
text: qsTr("Testnet") + translationManager.emptyString
|
text: qsTr("Testnet") + translationManager.emptyString
|
||||||
anchors.top: logo.bottom
|
anchors.top: logo.bottom
|
||||||
anchors.topMargin: 5
|
anchors.topMargin: 5
|
||||||
anchors.left: parent.left
|
anchors.left: viewOnly ? viewOnlyLabel.right : parent.left
|
||||||
anchors.leftMargin: 50
|
anchors.leftMargin: viewOnly ? 10 : 50
|
||||||
font.bold: true
|
font.bold: true
|
||||||
color: "red"
|
color: "red"
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue