https://bugs.kde.org/show_bug.cgi?id=518200

--- Comment #3 from [email protected] ---
Hey Nicolas, thanks for getting back to this so quickly! 

I just wanna make a small correction for comment #1:
QQC2.Slider.SnapAlwaysToSteps does not appear to be a valid option in Qt 6.
According to the Qt 6 Slider docs
(https://doc.qt.io/qt-6/qml-qtquick-controls-slider.html), the valid options
for the snapMode enum are:

Slider.NoSnap (default)  
Slider.SnapAlways, which snaps while dragging  
Slider.SnapOnRelease, which snaps only on release  

So, with the namespacing import, the correct code would be:

```  
import QtQuick.Controls as QQC2  

QQC2.Slider {  
    snapMode: QQC2.Slider.SnapAlways  
}  
```

-- 
You are receiving this mail because:
You are watching all bug changes.

Reply via email to