Browse Source

Merge pull request #4097 from Ultimaker/fix_layer_number_width

Adjust size of layer number depending on the maximum number of layers
Lipu Fei 6 years ago
parent
commit
a7f421c60c
1 changed files with 2 additions and 3 deletions
  1. 2 3
      plugins/SimulationView/SimulationSliderLabel.qml

+ 2 - 3
plugins/SimulationView/SimulationSliderLabel.qml

@@ -44,12 +44,11 @@ UM.PointingRectangle {
         id: valueLabel
 
         anchors {
-            left: parent.left
-            leftMargin: Math.round(UM.Theme.getSize("default_margin").width / 2)
             verticalCenter: parent.verticalCenter
+            horizontalCenter: parent.horizontalCenter
         }
 
-        width: maximumValue.toString().length * 12 * screenScaleFactor
+        width: (maximumValue.toString().length + 1) * 10 * screenScaleFactor
         text: sliderLabelRoot.value + startFrom // the current handle value, add 1 because layers is an array
         horizontalAlignment: TextInput.AlignRight