mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-06 05:23:58 -06:00
Merge branch 'fix_quality_disabled_alignment' of https://github.com/FieldOfView/Cura into FieldOfView/fix_quality_disabled_alignment
This commit is contained in:
commit
f2e362838e
1 changed files with 3 additions and 2 deletions
|
@ -226,7 +226,7 @@ Item
|
|||
Repeater
|
||||
{
|
||||
id: qualityRepeater
|
||||
model: qualityModel.availableTotalTicks > 0 ? qualityModel : 0
|
||||
model: qualityModel.totalTicks > 0 ? qualityModel : 0
|
||||
|
||||
Rectangle
|
||||
{
|
||||
|
@ -254,7 +254,8 @@ Item
|
|||
id: qualitySlider
|
||||
height: UM.Theme.getSize("sidebar_margin").height
|
||||
anchors.bottom: speedSlider.bottom
|
||||
visible: qualityModel.availableTotalTicks > 0
|
||||
enabled: qualityModel.availableTotalTicks > 0
|
||||
visible: qualityModel.totalTicks > 0
|
||||
updateValueWhileDragging : false
|
||||
|
||||
minimumValue: qualityModel.qualitySliderAvailableMin >= 0 ? qualityModel.qualitySliderAvailableMin : 0
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue