X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fchatview.cpp;h=b8cb2f17b770d7ebde00b5e82a01f8165a7e5300;hp=b40b29009c023b45a75920936c45764e7bdcbecb;hb=e105229e4443fbb05496fcec02a83cb8ffba09db;hpb=777799ecd614503b20c0fc9d31223556ecc6078b diff --git a/src/qtui/chatview.cpp b/src/qtui/chatview.cpp index b40b2900..b8cb2f17 100644 --- a/src/qtui/chatview.cpp +++ b/src/qtui/chatview.cpp @@ -126,11 +126,26 @@ bool ChatView::event(QEvent *event) void ChatView::resizeEvent(QResizeEvent *event) { + // if view is currently scrolled to bottom, we want it that way after resizing + bool atBottom = (_lastScrollbarPos == verticalScrollBar()->maximum()); + QGraphicsView::resizeEvent(event); + // if scrolling to bottom, do it immediately. + if(atBottom) + { + // we can reduce viewport updates if we scroll to the bottom allready at the beginning + verticalScrollBar()->setValue(verticalScrollBar()->maximum()); + } + scene()->updateForViewport(viewport()->width(), viewport()->height()); adjustSceneRect(); + if(atBottom) + { + _lastScrollbarPos = verticalScrollBar()->maximum(); + verticalScrollBar()->setValue(verticalScrollBar()->maximum()); + } checkChatLineCaches(); }