Added missed implementation of ContinuousSlider::value.

This commit is contained in:
23rd 2021-01-15 14:38:56 +03:00
parent 250add3a96
commit e1f5e10764
1 changed files with 4 additions and 0 deletions

View File

@ -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);
}