aboutsummaryrefslogtreecommitdiff
path: root/LeftPanel.qml
diff options
context:
space:
mode:
authorselsta <selsta@sent.at>2019-09-06 00:11:12 +0200
committerselsta <selsta@sent.at>2019-09-06 00:11:12 +0200
commit8dab0755d325f338c81c8eb8ab1f0f0156cf86b1 (patch)
treee2056793c43afee57ca5209ab080aec5bac5b9be /LeftPanel.qml
parenta267712d100a9c514dd7de451356fe115b2090a9 (diff)
downloadmonzero-gui-8dab0755d325f338c81c8eb8ab1f0f0156cf86b1.tar.gz
monzero-gui-8dab0755d325f338c81c8eb8ab1f0f0156cf86b1.tar.xz
monzero-gui-8dab0755d325f338c81c8eb8ab1f0f0156cf86b1.zip
repo: remove isMobile leftovers
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 a1c31e4c..3c55ba5e 100644
--- a/LeftPanel.qml
+++ b/LeftPanel.qml
@@ -84,7 +84,7 @@ Rectangle {
menuColumn.previousButton.checked = true
}
- width: (isMobile)? appWindow.width : 300
+ width: 300
color: "transparent"
anchors.bottom: parent.bottom
anchors.top: parent.top
@@ -390,7 +390,6 @@ Rectangle {
}
MoneroComponents.Label {
- visible: !isMobile
id: balanceLabel
text: qsTr("Balance") + translationManager.emptyString
color: "white"
@@ -418,7 +417,7 @@ Rectangle {
anchors.left: parent.left
anchors.right: parent.right
anchors.bottom: parent.bottom
- anchors.top: (isMobile)? parent.top : column1.bottom
+ anchors.top: column1.bottom
color: "transparent"
Flickable {