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:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user