diff options
| author | Riccardo Spagni <ric@spagni.net> | 2017-05-05 12:04:46 +0200 |
|---|---|---|
| committer | Riccardo Spagni <ric@spagni.net> | 2017-05-05 12:04:46 +0200 |
| commit | 2ac9e8eabb8240900fbc72362ef105563fc87acf (patch) | |
| tree | d5e7600526255f3d26e6550ea690d2986cd699ea /LeftPanel.qml | |
| parent | da6aad33a4aa58c298f3452206f3bab04ad2b5cb (diff) | |
| parent | fff5c716c813e741c552d310fb4ce1c07d3b07d8 (diff) | |
| download | monzero-gui-2ac9e8eabb8240900fbc72362ef105563fc87acf.tar.gz monzero-gui-2ac9e8eabb8240900fbc72362ef105563fc87acf.tar.xz monzero-gui-2ac9e8eabb8240900fbc72362ef105563fc87acf.zip | |
Merge pull request #658
fff5c71 add ios_get_libwallet.api.sh (Jaquee)
2e53c52 ios build settings (Jaquee)
Diffstat (limited to 'LeftPanel.qml')
| -rw-r--r-- | LeftPanel.qml | 28 |
1 files changed, 25 insertions, 3 deletions
diff --git a/LeftPanel.qml b/LeftPanel.qml index 043ce9e1..4c47c897 100644 --- a/LeftPanel.qml +++ b/LeftPanel.qml @@ -67,11 +67,12 @@ Rectangle { menuColumn.previousButton.checked = true } - width: 260 + width: (isMobile)? appWindow.width : 260 color: "#FFFFFF" // Item with monero logo Item { + visible: !isMobile id: logoItem anchors.left: parent.left anchors.right: parent.right @@ -115,7 +116,9 @@ Rectangle { } + Column { + visible: !isMobile id: column1 anchors.left: parent.left anchors.right: parent.right @@ -124,6 +127,7 @@ Rectangle { spacing: 5 Label { + visible: !isMobile id: balanceLabel text: qsTr("Balance") + translationManager.emptyString anchors.left: parent.left @@ -132,6 +136,7 @@ Rectangle { } Row { + visible: !isMobile Item { anchors.verticalCenter: parent.verticalCenter height: 26 @@ -144,6 +149,7 @@ Rectangle { } Text { + visible: !isMobile id: balanceText anchors.verticalCenter: parent.verticalCenter font.family: "Arial" @@ -194,6 +200,7 @@ Rectangle { } } + Rectangle { anchors.top: parent.top anchors.left: parent.left @@ -210,16 +217,26 @@ Rectangle { color: "#DBDBDB" } + + Rectangle { id: menuRect anchors.left: parent.left anchors.right: parent.right anchors.bottom: parent.bottom - anchors.top: column1.bottom - anchors.topMargin: 25 + anchors.top: (isMobile)? parent.top : column1.bottom + anchors.topMargin: (isMobile)? 0 : 25 color: "#1C1C1C" + + Flickable { + contentHeight: 500 + anchors.fill: parent + clip: true + + Column { + id: menuColumn anchors.left: parent.left anchors.right: parent.right @@ -463,6 +480,8 @@ Rectangle { } + } + NetworkStatusItem { id: networkStatus anchors.left: parent.left @@ -478,6 +497,9 @@ Rectangle { anchors.bottom: parent.bottom } } + + + // indicate disabled state // Desaturate { // anchors.fill: parent |
