mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-09 23:05:01 -06:00
Fix visibility when there are ticks but no available ticks
This commit is contained in:
parent
3be8f45636
commit
87c7373cb0
1 changed files with 2 additions and 1 deletions
|
@ -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