From bf237228540f46f34291183a78028e1dda4d0dad Mon Sep 17 00:00:00 2001 From: Manuel Nickschas Date: Thu, 28 Aug 2008 16:07:51 +0200 Subject: [PATCH] Dirty hack to fix the scrolling issues for now, will investigate the actual reason later --- src/qtui/chatview.cpp | 3 +++ 1 file changed, 3 insertions(+) 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; -- 2.20.1