Is it possible to get the size of the handle of a QSlider if a stylesheet changed it?
The following code seems only to work if nothing changed the handles size
QStyleOptionSlider opt;
initStyleOption(&opt);
QRect handle = style()->subControlRect(QStyle::CC_Slider, &opt, QStyle::SC_SliderHandle);
↧