diff options
| author | Ilya Kitaev <mbg033@gmail.com> | 2016-09-26 22:55:25 +0300 |
|---|---|---|
| committer | Ilya Kitaev <mbg033@gmail.com> | 2016-09-26 22:55:25 +0300 |
| commit | f402fd9e7d26f5b2bc56c55322a7a97ebb3dbe66 (patch) | |
| tree | 0a27984eaf33c9af6b72d1930693d2f32d1d923d /components | |
| parent | 7e769b3a87c9eda69d0506c9ce13859bafc50951 (diff) | |
| download | monzero-gui-f402fd9e7d26f5b2bc56c55322a7a97ebb3dbe66.tar.gz monzero-gui-f402fd9e7d26f5b2bc56c55322a7a97ebb3dbe66.tar.xz monzero-gui-f402fd9e7d26f5b2bc56c55322a7a97ebb3dbe66.zip | |
Wallet::daemonBlockChainHeight(); BC sync progress in GUI
Diffstat (limited to 'components')
| -rw-r--r-- | components/ProcessingSplash.qml | 21 |
1 files changed, 16 insertions, 5 deletions
diff --git a/components/ProcessingSplash.qml b/components/ProcessingSplash.qml index 70384f05..297631ec 100644 --- a/components/ProcessingSplash.qml +++ b/components/ProcessingSplash.qml @@ -32,13 +32,15 @@ import QtQuick.Controls 1.4 import QtQuick.Layouts 1.1 Window { - id: splash + id: root modality: Qt.ApplicationModal flags: Qt.Window | Qt.FramelessWindowHint - property alias message: message.text + property alias messageText: messageTitle.text + property alias heightProgressText : heightProgress.text + width: 200 height: 100 - opacity: 0.5 + opacity: 0.7 ColumnLayout { anchors.horizontalCenter: parent.horizontalCenter @@ -50,14 +52,23 @@ Window { } Text { - id: message + id: messageTitle text: "Please wait..." font { pointSize: 22 } horizontalAlignment: Text.AlignHCenter + Layout.alignment: Qt.AlignVCenter | Qt.AlignHCenter } - } + Text { + id: heightProgress + font { + pointSize: 18 + } + horizontalAlignment: Text.AlignHCenter + Layout.alignment: Qt.AlignVCenter | Qt.AlignHCenter + } + } } |
