This repository has been archived on 2026-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
2019-01-08 21:36:12 +01:00

20 lines
292 B
QML

import QtQuick 2.9
import QtQuick.Controls 2.1
Rectangle {
anchors.fill: parent
color: "#55000000"
visible: shown
property bool shown: false
// Event eater
MouseArea {
anchors.fill: parent
}
BusyIndicator {
anchors.centerIn: parent
}
}