Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ToolboxErrorPage.qml « pages « qml « resources « Toolbox « plugins - github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e57e63dbb9bf194e83e4504b7fad579c6b44457c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Copyright (c) 2018 Ultimaker B.V.
// Toolbox is released under the terms of the LGPLv3 or higher.

import QtQuick 2.10
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", "Could not connect to the Cura Package database. Please check your connection.")
        anchors
        {
            centerIn: parent
        }
        renderType: Text.NativeRendering
    }
}