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 'resources/qml/Settings/SettingExtruder.qml')
-rw-r--r--resources/qml/Settings/SettingExtruder.qml25
1 files changed, 4 insertions, 21 deletions
diff --git a/resources/qml/Settings/SettingExtruder.qml b/resources/qml/Settings/SettingExtruder.qml
index ea514eb069..071d9dbfe5 100644
--- a/resources/qml/Settings/SettingExtruder.qml
+++ b/resources/qml/Settings/SettingExtruder.qml
@@ -4,7 +4,7 @@
import QtQuick 2.7
import QtQuick.Controls 2.0
-import UM 1.1 as UM
+import UM 1.5 as UM
import Cura 1.0 as Cura
SettingItem
@@ -143,7 +143,7 @@ SettingItem
}
}
- contentItem: Label
+ contentItem: UM.Label
{
anchors.verticalCenter: parent.verticalCenter
anchors.left: parent.left
@@ -153,13 +153,8 @@ SettingItem
text: control.currentText
textFormat: Text.PlainText
- renderType: Text.NativeRendering
- font: UM.Theme.getFont("default")
color: enabled ? UM.Theme.getColor("setting_control_text") : UM.Theme.getColor("setting_control_disabled_text")
- elide: Text.ElideLeft
- verticalAlignment: Text.AlignVCenter
-
background: Rectangle
{
id: swatch
@@ -204,27 +199,15 @@ SettingItem
height: control.height
highlighted: control.highlightedIndex == index
- contentItem: Label
+ contentItem: UM.Label
{
anchors.fill: parent
anchors.leftMargin: UM.Theme.getSize("setting_unit_margin").width
anchors.rightMargin: UM.Theme.getSize("setting_unit_margin").width
text: model.name
- renderType: Text.NativeRendering
- color:
- {
- if (model.enabled)
- {
- UM.Theme.getColor("setting_control_text")
- } else
- {
- UM.Theme.getColor("action_button_disabled_text");
- }
- }
- font: UM.Theme.getFont("default")
+ color: model.enabled ? UM.Theme.getColor("setting_control_text") : UM.Theme.getColor("action_button_disabled_text")
elide: Text.ElideRight
- verticalAlignment: Text.AlignVCenter
rightPadding: swatch.width + UM.Theme.getSize("setting_unit_margin").width
background: Rectangle