From c2b430f9f8dbcc17e007a5567bcf18f5c8f756b8 Mon Sep 17 00:00:00 2001 From: Bumsik Kim Date: Mon, 14 May 2018 16:08:56 -0400 Subject: [PATCH] QML: Added a progress bar on the bottom --- mainWindow.qml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/mainWindow.qml b/mainWindow.qml index 8cdec80..f1e5320 100644 --- a/mainWindow.qml +++ b/mainWindow.qml @@ -105,6 +105,15 @@ ApplicationWindow { // width: 200 // } + ProgressBar { + anchors.left: parent.left + anchors.right: parent.right + anchors.bottom: parent.bottom + z: 1 + indeterminate: backend.vncState == Backend.WAITING + value: backend.vncState == Backend.CONNECTED ? 1 : 0 + } + Popup { id: busyDialog modal: true