diff options
| author | Sander Ferdinand <sa.ferdinand@gmail.com> | 2017-11-23 15:30:25 +0100 |
|---|---|---|
| committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-03-29 23:04:00 +0100 |
| commit | 82553b0df20e1597fec83b72fcc8799477e762ae (patch) | |
| tree | 196d978ab0c74ae3fb4dd01b980a75c63ce4676d /LeftPanel.qml | |
| parent | dc445edaae6dd7cb98b5337566aa4a5495e97b6b (diff) | |
| download | monzero-gui-82553b0df20e1597fec83b72fcc8799477e762ae.tar.gz monzero-gui-82553b0df20e1597fec83b72fcc8799477e762ae.tar.xz monzero-gui-82553b0df20e1597fec83b72fcc8799477e762ae.zip | |
NetworkStatus section development
Diffstat (limited to 'LeftPanel.qml')
| -rw-r--r-- | LeftPanel.qml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/LeftPanel.qml b/LeftPanel.qml index 51d0d70d..d9df22da 100644 --- a/LeftPanel.qml +++ b/LeftPanel.qml @@ -573,9 +573,11 @@ Rectangle { id: networkStatus anchors.left: parent.left anchors.right: parent.right + anchors.leftMargin: 4 + anchors.rightMargin: 4 anchors.bottom: (progressBar.visible)? progressBar.top : parent.bottom; connected: Wallet.ConnectionStatus_Disconnected - height: 40 * scaleRatio + height: progressBar.visible ? 40 * scaleRatio : 60 * scaleRatio } ProgressBar { @@ -595,6 +597,8 @@ Rectangle { anchors.bottom: parent.bottom syncType: qsTr("Daemon") visible: networkStatus.connected + anchors.leftMargin: 4 * scaleRatio + anchors.rightMargin: 4 * scaleRatio height: 62 * scaleRatio } } // menuRect |
