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:
authorA.Sasin <a.sasin@ultimaker.com>2017-10-12 12:45:25 +0300
committerA.Sasin <a.sasin@ultimaker.com>2017-10-12 12:45:25 +0300
commita3b8642a4e30f6192647b94d724473a4e5e1880b (patch)
tree3405c184b6f867a6e5cd2ca97e1cc580591b09d3
parent372e86e39bf8c3fb77d5f99fae8de49cd5367396 (diff)
Added text.elideRight on SidebarSimple
-rw-r--r--resources/qml/SidebarSimple.qml6
1 files changed, 6 insertions, 0 deletions
diff --git a/resources/qml/SidebarSimple.qml b/resources/qml/SidebarSimple.qml
index 59972bbf99..920044e277 100644
--- a/resources/qml/SidebarSimple.qml
+++ b/resources/qml/SidebarSimple.qml
@@ -661,11 +661,14 @@ Item
anchors.topMargin: Math.floor(UM.Theme.getSize("sidebar_margin").height * 1.5)
anchors.left: parent.left
anchors.leftMargin: UM.Theme.getSize("sidebar_margin").width
+ anchors.right: infillCellLeft.right
+ anchors.rightMargin: UM.Theme.getSize("sidebar_margin").width
anchors.verticalCenter: enableSupportCheckBox.verticalCenter
text: catalog.i18nc("@label", "Generate Support");
font: UM.Theme.getFont("default");
color: UM.Theme.getColor("text");
+ elide: Text.ElideRight
}
CheckBox
@@ -711,10 +714,13 @@ Item
visible: supportExtruderCombobox.visible
anchors.left: parent.left
anchors.leftMargin: UM.Theme.getSize("sidebar_margin").width
+ anchors.right: infillCellLeft.right
+ anchors.rightMargin: UM.Theme.getSize("sidebar_margin").width
anchors.verticalCenter: supportExtruderCombobox.verticalCenter
text: catalog.i18nc("@label", "Support Extruder");
font: UM.Theme.getFont("default");
color: UM.Theme.getColor("text");
+ elide: Text.ElideRight
}
ComboBox