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:
authorGhostkeeper <rubend@tutanota.com>2022-06-14 17:07:05 +0300
committerGhostkeeper <rubend@tutanota.com>2022-06-14 17:07:05 +0300
commit6b6f41bfe9b3f92eedb130ad95fec67d60ac7bf0 (patch)
tree63d1f5f200f431cc0dbdcb20187b20164653b8e2 /resources/qml
parent83ea5c29442c2efc4e0a97e9fb4ef2e8a27b8bc4 (diff)
Add a horizontal line between sections of recommended set-up
This delimits the selecting of the profile from the few basic settings. Contributes to issue CURA-8849.
Diffstat (limited to 'resources/qml')
-rw-r--r--resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml9
1 files changed, 9 insertions, 0 deletions
diff --git a/resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml b/resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml
index 9dce3565a0..f0b1010517 100644
--- a/resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml
+++ b/resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml
@@ -46,6 +46,15 @@ Item
width: parent.width
}
+ //Line between the sections.
+ Rectangle
+ {
+ width: parent.width
+ height: UM.Theme.getSize("default_lining").height
+
+ color: UM.Theme.getColor("lining")
+ }
+
UM.Label
{
text: catalog.i18nc("@label", "Print settings")