fix(NSlider): guard filled CurveRenderer shape against zero-height geometry

This commit is contained in:
Lysec
2026-03-05 21:05:00 +01:00
parent 879bdce702
commit 1ea8654d5b
+1 -1
View File
@@ -120,7 +120,7 @@ Slider {
Shape {
width: bgContainer.fillWidth
height: bgContainer.height
visible: bgContainer.fillWidth > 0
visible: bgContainer.fillWidth > 0 && bgContainer.height > 0
preferredRendererType: Shape.CurveRenderer
clip: true