Cura/plugins/Toolbox/resources/qml/ToolboxLoadingPage.qml
2018-05-02 12:01:29 +02:00

23 lines
435 B
QML

// Copyright (c) 2018 Ultimaker B.V.
// Toolbox is released under the terms of the LGPLv3 or higher.
import QtQuick 2.7
import QtQuick.Controls 1.4
import QtQuick.Controls.Styles 1.4
Rectangle
{
id: page
width: parent.width
height: parent.height
color: "transparent"
Label
{
text: catalog.i18nc("@info", "Fetching packages...")
anchors
{
centerIn: parent
}
}
}