diff options
| author | Riccardo Spagni <ric@spagni.net> | 2017-03-18 11:43:50 +0200 |
|---|---|---|
| committer | Riccardo Spagni <ric@spagni.net> | 2017-03-18 11:43:50 +0200 |
| commit | e4aa33886924875691c226e32989529df8af20d0 (patch) | |
| tree | a6f6a88ac7da17d7005591d6cc9dc62c153cfeb0 | |
| parent | f22e5fdd7b5d4eb0c61018fc5ebe54b74987075e (diff) | |
| parent | e4a114321f6481b8c78d5b9d88a4da3576b63d20 (diff) | |
| download | monzero-gui-e4aa33886924875691c226e32989529df8af20d0.tar.gz monzero-gui-e4aa33886924875691c226e32989529df8af20d0.tar.xz monzero-gui-e4aa33886924875691c226e32989529df8af20d0.zip | |
Merge pull request #557
e4a1143 Add testnet label (Jaquee)
| -rw-r--r-- | LeftPanel.qml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/LeftPanel.qml b/LeftPanel.qml index d0e4c098..043ce9e1 100644 --- a/LeftPanel.qml +++ b/LeftPanel.qml @@ -86,6 +86,18 @@ Rectangle { source: "images/moneroLogo.png" } + 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 + font.bold: true + color: "red" + } + /* Disable twitter/news panel Image { anchors.left: parent.left |
