Issue
In PYQT, how we can change the slider's value just by drag the slider tong? If you click on the slider, the tong moves and it causes sliderReleased signal is not triggered.
Solution
Try to change its pageStep to 0
slider = PyQt5.QtWidgets.QAbstractSlider()
slider.setPageStep(0)
pageStep contains the number of steps that changes value when you press on a slider without touching its tongue.
Answered By - Just Endy
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.