Try connecting rangeChanged() from the scroll bar to a a slot:
Qt Code:
void sliderRangeChanged(int min, int max) { Q_UNUSED(min); bar->setValue(max); }To copy to clipboard, switch view to plain text mode
Try connecting rangeChanged() from the scroll bar to a a slot:
Qt Code:
void sliderRangeChanged(int min, int max) { Q_UNUSED(min); bar->setValue(max); }To copy to clipboard, switch view to plain text mode
Bookmarks