fixed scrollbar behaving weird at the bottom

the scrollbar would not move smoothly at the last message but jump all the
way to the bottom instead
This commit is contained in:
fourtf 2017-08-05 22:46:40 +02:00
parent b58ad983d0
commit c8c9057b1e

View file

@ -82,7 +82,7 @@ void ScrollBar::scrollToBottom()
bool ScrollBar::isAtBottom() const
{
return ((this->getMaximum() - this->getLargeChange()) - this->getCurrentValue()) <= 1;
return ((this->getMaximum() - this->getLargeChange()) - this->getCurrentValue()) <= 0.00001;
}
void ScrollBar::setMaximum(qreal value)