diff options
| author | Sander Ferdinand <sa.ferdinand@gmail.com> | 2017-11-18 16:18:05 +0100 |
|---|---|---|
| committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-03-29 23:04:00 +0100 |
| commit | 9462899e97bb9057bb0205bb33413710d616a38c (patch) | |
| tree | a1764f58040fd041aa7ae121bdd5439e3412eb58 | |
| parent | 9819e63fccd290f9804c660bdc0617c026eb2ec7 (diff) | |
| download | monzero-gui-9462899e97bb9057bb0205bb33413710d616a38c.tar.gz monzero-gui-9462899e97bb9057bb0205bb33413710d616a38c.tar.xz monzero-gui-9462899e97bb9057bb0205bb33413710d616a38c.zip | |
Position testnet label
| -rw-r--r-- | LeftPanel.qml | 49 |
1 files changed, 26 insertions, 23 deletions
diff --git a/LeftPanel.qml b/LeftPanel.qml index faf55a6d..6122fae3 100644 --- a/LeftPanel.qml +++ b/LeftPanel.qml @@ -119,6 +119,31 @@ Rectangle { fillMode: Image.PreserveAspectFit 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 { @@ -170,29 +195,7 @@ Rectangle { 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 { id: unlockedBalanceLabel text: qsTr("Unlocked balance") + translationManager.emptyString |
