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/CreateNewProjectPopup.qml')
-rw-r--r--plugins/DigitalLibrary/resources/qml/CreateNewProjectPopup.qml9
1 files changed, 3 insertions, 6 deletions
diff --git a/plugins/DigitalLibrary/resources/qml/CreateNewProjectPopup.qml b/plugins/DigitalLibrary/resources/qml/CreateNewProjectPopup.qml
index 6846720dda..1aef93c251 100644
--- a/plugins/DigitalLibrary/resources/qml/CreateNewProjectPopup.qml
+++ b/plugins/DigitalLibrary/resources/qml/CreateNewProjectPopup.qml
@@ -5,7 +5,7 @@ import QtQuick 2.15
import QtQuick.Window 2.2
import QtQuick.Controls 2.3
-import UM 1.2 as UM
+import UM 1.5 as UM
import Cura 1.6 as Cura
import DigitalFactory 1.0 as DF
@@ -64,12 +64,10 @@ Popup
}
}
- Label
+ UM.Label
{
id: projectNameLabel
text: "Project Name"
- font: UM.Theme.getFont("default")
- color: UM.Theme.getColor("text")
anchors
{
top: createNewLibraryProjectLabel.bottom
@@ -107,13 +105,12 @@ Popup
}
}
- Label
+ UM.Label
{
id: errorWhileCreatingProjectLabel
text: manager.projectCreationErrorText
width: parent.width
wrapMode: Text.WordWrap
- font: UM.Theme.getFont("default")
color: UM.Theme.getColor("error")
visible: manager.creatingNewProjectStatus == DF.RetrievalStatus.Failed
anchors