mirror of
https://github.com/monero-project/monero-gui.git
synced 2025-02-07 16:43:42 +02:00
Position testnet label
This commit is contained in:
parent
9819e63fcc
commit
9462899e97
@ -119,6 +119,31 @@ Rectangle {
|
|||||||
fillMode: Image.PreserveAspectFit
|
fillMode: Image.PreserveAspectFit
|
||||||
source: "images/card-background.png"
|
source: "images/card-background.png"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Text {
|
||||||
|
id: testnetLabel
|
||||||
|
visible: persistentSettings.testnet
|
||||||
|
text: qsTr("Testnet") + translationManager.emptyString
|
||||||
|
anchors.top: parent.top
|
||||||
|
anchors.topMargin: 8
|
||||||
|
anchors.left: parent.left
|
||||||
|
anchors.leftMargin: 190
|
||||||
|
font.bold: true
|
||||||
|
color: "white"
|
||||||
|
}
|
||||||
|
|
||||||
|
// @TODO: implement
|
||||||
|
// 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"
|
||||||
|
// }
|
||||||
}
|
}
|
||||||
|
|
||||||
Item {
|
Item {
|
||||||
@ -170,29 +195,7 @@ Rectangle {
|
|||||||
return defaultSize;
|
return defaultSize;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Text {
|
|
||||||
id: testnetLabel
|
|
||||||
visible: persistentSettings.testnet
|
|
||||||
text: qsTr("Testnet") + translationManager.emptyString
|
|
||||||
anchors.top: unlockedBalanceText.bottom
|
|
||||||
anchors.topMargin: 5
|
|
||||||
anchors.left: parent.left
|
|
||||||
anchors.leftMargin: 50
|
|
||||||
font.bold: true
|
|
||||||
color: "red"
|
|
||||||
}
|
|
||||||
// @TODO: implement
|
|
||||||
// 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"
|
|
||||||
// }
|
|
||||||
Label {
|
Label {
|
||||||
id: unlockedBalanceLabel
|
id: unlockedBalanceLabel
|
||||||
text: qsTr("Unlocked balance") + translationManager.emptyString
|
text: qsTr("Unlocked balance") + translationManager.emptyString
|
||||||
|
Loading…
Reference in New Issue
Block a user