Skip to content
Snippets Groups Projects
Commit 596c852b authored by Thomas Hartmann's avatar Thomas Hartmann
Browse files

QmlDesigner.propertyEditor: SliderWidget polishing

parent 64ade0d9
No related branches found
No related tags found
No related merge requests found
......@@ -17,8 +17,9 @@ QWidget {
width: sliderWidget.width
height: 24
value: sliderWidget.value
onValueChanged: {
sliderWidget.value = value
onValueChanged: {
if (sliderWidget.value != value)
sliderWidget.value = value
}
onSliderPressed: {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment