fixed user info popup user info loading

This commit is contained in:
fourtf
2018-06-19 20:14:13 +02:00
parent 7703087fb4
commit cf6bdeddc7
4 changed files with 18 additions and 10 deletions
+2 -2
View File
@@ -190,8 +190,8 @@ void Scrollbar::setCurrentValue(qreal value)
value = std::max(this->minimum_, std::min(this->maximum_ - this->largeChange_,
value + this->smoothScrollingOffset_));
if (std::abs(this->currentValue_ - value) > 0.000001) {
qDebug() << "setCurrentValue";
if (std::abs(this->currentValue_ - value) > 0.0001) {
// qDebug() << "setCurrentValue";
this->currentValue_ = value;
this->updateScroll();