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:
authorc.lamboo <casperlamboo@gmail.com>2022-11-02 16:15:51 +0300
committerc.lamboo <casperlamboo@gmail.com>2022-11-02 16:15:51 +0300
commit2487cf17dd416724049b1a40fbbe467be36362fe (patch)
treef6fe75712870c43c7cc7709bb6886d26258a4c44
parent975775b7a03f8c7e88e003e721662a5c65f35bf5 (diff)
parent1dfac6bb71ad893ee6455168952ba210b09c2732 (diff)
Merge remote-tracking branch 'origin/feature/_CURA-8689_Make_it_easier_to_add_your_first_printer_via_cloud' into feature/_CURA-8689_Make_it_easier_to_add_your_first_printer_via_cloud
-rw-r--r--resources/qml/WelcomePages/AddUltimakerPrinter.qml6
-rw-r--r--resources/qml/WelcomePages/PrinterCard.qml4
2 files changed, 5 insertions, 5 deletions
diff --git a/resources/qml/WelcomePages/AddUltimakerPrinter.qml b/resources/qml/WelcomePages/AddUltimakerPrinter.qml
index 3566600159..e1cb0d7120 100644
--- a/resources/qml/WelcomePages/AddUltimakerPrinter.qml
+++ b/resources/qml/WelcomePages/AddUltimakerPrinter.qml
@@ -42,8 +42,8 @@ Control
Image
{
source: UM.Theme.getImage("add_printer")
- Layout.preferredWidth: 200
- Layout.preferredHeight: 200
+ Layout.preferredWidth: 200 * screenScaleFactor
+ Layout.preferredHeight: 200 * screenScaleFactor
}
ColumnLayout
@@ -119,4 +119,4 @@ Control
}
}
}
-} \ No newline at end of file
+}
diff --git a/resources/qml/WelcomePages/PrinterCard.qml b/resources/qml/WelcomePages/PrinterCard.qml
index 2b29d2279e..6b0a5bb526 100644
--- a/resources/qml/WelcomePages/PrinterCard.qml
+++ b/resources/qml/WelcomePages/PrinterCard.qml
@@ -67,8 +67,8 @@ Control
{
id: image
source: imageSource
- width: 180
- height: 180
+ width: 180 * screenScaleFactor
+ height: 180 * screenScaleFactor
sourceSize.width: width
sourceSize.height: height
}