Added missed implementation of ContinuousSlider::value.
This commit is contained in:
parent
250add3a96
commit
e1f5e10764
|
@ -50,6 +50,10 @@ QRect ContinuousSlider::getSeekRect() const {
|
|||
: QRect(0, decrease.height() / 2, width(), height() - decrease.width());
|
||||
}
|
||||
|
||||
float64 ContinuousSlider::value() const {
|
||||
return getCurrentValue();
|
||||
}
|
||||
|
||||
void ContinuousSlider::setValue(float64 value) {
|
||||
setValue(value, -1);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue