From 777799ecd614503b20c0fc9d31223556ecc6078b Mon Sep 17 00:00:00 2001 From: Sebastian Goth Date: Tue, 17 Jun 2014 18:07:11 +0200 Subject: [PATCH] Don't scroll to bottom on resize We're brave today.. Resizing the chatview (even unintentionally by hovering the topicline) resulted in scrolling down the current view. There might have been reasons.. i can't see them.. Fixes #821 --- src/qtui/chatview.cpp | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/qtui/chatview.cpp b/src/qtui/chatview.cpp index 53c43927..b40b2900 100644 --- a/src/qtui/chatview.cpp +++ b/src/qtui/chatview.cpp @@ -128,16 +128,9 @@ void ChatView::resizeEvent(QResizeEvent *event) { QGraphicsView::resizeEvent(event); - // FIXME: do we really need to scroll down on resize? - - // 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(); - _lastScrollbarPos = verticalScrollBar()->maximum(); - verticalScrollBar()->setValue(verticalScrollBar()->maximum()); - checkChatLineCaches(); } -- 2.20.1