mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2025-07-29 08:53:03 +02:00
Added missed implementation of ContinuousSlider::value.
This commit is contained in:
parent
250add3a96
commit
e1f5e10764
1 changed files with 4 additions and 0 deletions
|
@ -50,6 +50,10 @@ QRect ContinuousSlider::getSeekRect() const {
|
||||||
: QRect(0, decrease.height() / 2, width(), height() - decrease.width());
|
: QRect(0, decrease.height() / 2, width(), height() - decrease.width());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
float64 ContinuousSlider::value() const {
|
||||||
|
return getCurrentValue();
|
||||||
|
}
|
||||||
|
|
||||||
void ContinuousSlider::setValue(float64 value) {
|
void ContinuousSlider::setValue(float64 value) {
|
||||||
setValue(value, -1);
|
setValue(value, -1);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue