aboutsummaryrefslogtreecommitdiff
path: root/LeftPanel.qml
diff options
context:
space:
mode:
Diffstat (limited to 'LeftPanel.qml')
-rw-r--r--LeftPanel.qml5
1 files changed, 2 insertions, 3 deletions
diff --git a/LeftPanel.qml b/LeftPanel.qml
index acefa60f..b9577591 100644
--- a/LeftPanel.qml
+++ b/LeftPanel.qml
@@ -99,7 +99,6 @@ Rectangle {
anchors.left: parent.left
anchors.right: parent.right
anchors.top: parent.top
- // @TODO: customDecorations?
anchors.topMargin: (persistentSettings.customDecorations)? 50 : 0
RowLayout {
@@ -121,8 +120,8 @@ Rectangle {
Text {
id: testnetLabel
- visible: persistentSettings.nettype
- text: qsTr("Testnet") + translationManager.emptyString
+ visible: persistentSettings.nettype != NetworkType.MAINNET
+ text: (persistentSettings.nettype == NetworkType.TESTNET ? qsTr("Testnet") : qsTr("Stagenet")) + translationManager.emptyString
anchors.top: parent.top
anchors.topMargin: 8
anchors.left: parent.left