diff options
| author | xiphon <xiphon@protonmail.com> | 2018-10-16 05:20:04 +0000 |
|---|---|---|
| committer | xiphon <xiphon@protonmail.com> | 2018-10-16 05:20:04 +0000 |
| commit | 784ca96ccaa8d5f020aa87a69e2c1e361fda889d (patch) | |
| tree | 9c55753e799155fcce8de117d62cbc4204f9b36b /LeftPanel.qml | |
| parent | 7adeb694c17511ffcb1d3d0c0038f5f8b8684a5f (diff) | |
| download | monzero-gui-784ca96ccaa8d5f020aa87a69e2c1e361fda889d.tar.gz monzero-gui-784ca96ccaa8d5f020aa87a69e2c1e361fda889d.tar.xz monzero-gui-784ca96ccaa8d5f020aa87a69e2c1e361fda889d.zip | |
fixed: networkStatus overlaps menu, padding
Diffstat (limited to 'LeftPanel.qml')
| -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 |
