mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-11-16 15:58:11 +00:00
fixed: networkStatus overlaps menu, padding
This commit is contained in:
parent
15d8ef7622
commit
cbee139d57
1 changed files with 7 additions and 9 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue