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/ObjectItemButton.qml')
-rw-r--r--resources/qml/ObjectItemButton.qml7
1 files changed, 2 insertions, 5 deletions
diff --git a/resources/qml/ObjectItemButton.qml b/resources/qml/ObjectItemButton.qml
index 1637b8d0cd..d0cad614d8 100644
--- a/resources/qml/ObjectItemButton.qml
+++ b/resources/qml/ObjectItemButton.qml
@@ -4,7 +4,7 @@
import QtQuick 2.10
import QtQuick.Controls 2.3
-import UM 1.1 as UM
+import UM 1.5 as UM
import Cura 1.0 as Cura
Button
@@ -56,7 +56,7 @@ Button
visible: showExtruderSwatches && extruderColor != ""
}
- Label
+ UM.Label
{
id: buttonText
anchors
@@ -67,12 +67,9 @@ Button
verticalCenter: parent.verticalCenter
}
text: objectItemButton.text
- font: UM.Theme.getFont("default")
color: UM.Theme.getColor("text_scene")
opacity: (outsideBuildArea) ? 0.5 : 1.0
visible: text != ""
- renderType: Text.NativeRendering
- verticalAlignment: Text.AlignVCenter
elide: Text.ElideRight
}