From: Manuel Nickschas Date: Thu, 28 Aug 2008 14:07:51 +0000 (+0200) Subject: Dirty hack to fix the scrolling issues for now, will investigate the actual reason... X-Git-Tag: 0.3.1~316 X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=commitdiff_plain;h=bcb94767ec585a25b83bfb7a4e236fb40cc32570;ds=sidebyside Dirty hack to fix the scrolling issues for now, will investigate the actual reason later --- diff --git a/src/qtui/chatview.cpp b/src/qtui/chatview.cpp index 02d61b26..96e8d944 100644 --- a/src/qtui/chatview.cpp +++ b/src/qtui/chatview.cpp @@ -74,6 +74,9 @@ void ChatView::sceneHeightChangedAt(qreal ypos, qreal hdiff) { void ChatView::verticalScrollbarChanged(int newPos) { QAbstractSlider *vbar = verticalScrollBar(); Q_ASSERT(vbar); + + // FIXME dirty hack to battle the "I just scroll up a pixel on hide()/show()" problem + if(vbar->maximum() - vbar->value() < 5) vbar->setValue(vbar->maximum()); if(newPos < _lastScrollbarPos) { int relativePos = 100;