12-23-2012 09:02 PM
Hi,
I am trying to use Slider cascade qml component.
I realized , when user drag the slider if emit the onValueChanged signal.
It also emit onValueChanged signal if i set value manually.
Is there a way to not emit onValueChanged signal when changing value manually ?
Thanks and regards
Solved! Go to Solution.
12-23-2012 09:32 PM
Hi! Try
slider->blockSignals(true);
...modify the value...
slider->blockSignals(false);
or disconnect then reconnect the signal.
12-23-2012 09:39 PM
Hi,
Thanks for quick response.
Same can be done with QML as well ?
12-23-2012 10:23 PM
I did someting like following
sliderProgressBar.valueChanged.disconnect(sliderPr
....
sliderProgressBar.valueChanged.connect(sliderProgr
seems to works fine.
Thaks for your help