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

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/DigitalLibrary/resources/qml/OpenProjectFilesPage.qml')
-rw-r--r--plugins/DigitalLibrary/resources/qml/OpenProjectFilesPage.qml6
1 files changed, 2 insertions, 4 deletions
diff --git a/plugins/DigitalLibrary/resources/qml/OpenProjectFilesPage.qml b/plugins/DigitalLibrary/resources/qml/OpenProjectFilesPage.qml
index 3e483b4fef..3c36a5687a 100644
--- a/plugins/DigitalLibrary/resources/qml/OpenProjectFilesPage.qml
+++ b/plugins/DigitalLibrary/resources/qml/OpenProjectFilesPage.qml
@@ -83,13 +83,12 @@ Item
}
}
- Label
+ UM.Label
{
id: emptyProjectLabel
anchors.horizontalCenter: parent.horizontalCenter
anchors.verticalCenter: parent.verticalCenter
text: "Select a project to view its files."
- font: UM.Theme.getFont("default")
color: UM.Theme.getColor("setting_category_text")
Connections
@@ -102,14 +101,13 @@ Item
}
}
- Label
+ UM.Label
{
id: noFilesInProjectLabel
anchors.horizontalCenter: parent.horizontalCenter
anchors.verticalCenter: parent.verticalCenter
visible: (manager.digitalFactoryFileModel.count == 0 && !emptyProjectLabel.visible && !retrievingFilesBusyIndicator.visible)
text: "No supported files in this project."
- font: UM.Theme.getFont("default")
color: UM.Theme.getColor("setting_category_text")
}