diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2018-10-16 18:16:45 -0500 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2018-10-16 18:16:45 -0500 |
| commit | 7615b86ac75857e840770d6a412b655793dd30db (patch) | |
| tree | 56f8d8cc4ba77871cb7ae7bac74806763a0fece7 | |
| parent | 9735327df9bb47507d8799ec2855d4add7324c8a (diff) | |
| parent | 784ca96ccaa8d5f020aa87a69e2c1e361fda889d (diff) | |
| download | monzero-gui-7615b86ac75857e840770d6a412b655793dd30db.tar.gz monzero-gui-7615b86ac75857e840770d6a412b655793dd30db.tar.xz monzero-gui-7615b86ac75857e840770d6a412b655793dd30db.zip | |
Merge pull request #1660
784ca96 fixed: networkStatus overlaps menu, padding (xiphon)
| -rw-r--r-- | LeftPanel.qml | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/LeftPanel.qml b/LeftPanel.qml index 5a22f365..e689ec13 100644 --- a/LeftPanel.qml +++ b/LeftPanel.qml @@ -96,7 +96,7 @@ Rectangle { visible: true z: 2 id: column1 - height: 200 + height: 210 anchors.left: parent.left anchors.right: parent.right anchors.top: parent.top @@ -111,10 +111,10 @@ Rectangle { anchors.leftMargin: 20 anchors.verticalCenter: parent.verticalCenter height: 490 * scaleRatio - width: 259 * scaleRatio + width: 260 * scaleRatio Image { - width: 259; height: 170 + width: 260; height: 170 fillMode: Image.PreserveAspectFit source: "images/card-background.png" } @@ -247,19 +247,17 @@ Rectangle { anchors.right: parent.right anchors.bottom: parent.bottom anchors.top: (isMobile)? parent.top : column1.bottom - anchors.topMargin: (isMobile)? 0 : 32 color: "transparent" Flickable { id:flicker - contentHeight: (progressBar.visible)? menuColumn.height + separator.height + - networkStatus.height + progressBar.height + daemonProgressBar.height : - menuColumn.height + separator.height + networkStatus.height - anchors.fill: parent + contentHeight: menuColumn.height + anchors.top: parent.top + anchors.bottom: networkStatus.top + width: parent.width clip: true - Column { id: menuColumn |
