mirror of
https://github.com/kbumsik/VirtScreen.git
synced 2025-03-09 15:40:18 +00:00
QML: Added a progress bar on the bottom
This commit is contained in:
parent
67b0e43c89
commit
c2b430f9f8
1 changed files with 9 additions and 0 deletions
|
@ -105,6 +105,15 @@ ApplicationWindow {
|
||||||
// width: 200
|
// 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 {
|
Popup {
|
||||||
id: busyDialog
|
id: busyDialog
|
||||||
modal: true
|
modal: true
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue