Skip to content

Commit

Permalink
Fix position of hotend/bed inputs.
Browse files Browse the repository at this point in the history
  • Loading branch information
loociano committed May 26, 2020
1 parent 871fd63 commit 39c71ce
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion resources/qml/MonitorBuildplate.qml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ Item {
}
color: targetBedTemperatureLabel.visible > 0 ? 'transparent' : UM.Theme.getColor('monitor_skeleton_loading')
height: 18 * screenScaleFactor
width: Math.max(targetBedTemperatureLabel.contentWidth, 36 * screenScaleFactor)
width: 36 * screenScaleFactor
radius: 2 * screenScaleFactor

Label {
Expand Down
2 changes: 1 addition & 1 deletion resources/qml/MonitorExtruder.qml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ Item {
}
color: targetHotendTemperatureLabel.visible > 0 ? 'transparent' : UM.Theme.getColor('monitor_skeleton_loading')
height: 18 * screenScaleFactor
width: Math.max(targetHotendTemperatureLabel.contentWidth, 36 * screenScaleFactor)
width: 36 * screenScaleFactor
radius: 2 * screenScaleFactor

Label {
Expand Down

0 comments on commit 39c71ce

Please sign in to comment.