From adb40d4bd56e7378210a32fdc4f1f63ae21f9183 Mon Sep 17 00:00:00 2001 From: Christian Stenger Date: Thu, 19 Mar 2015 16:02:40 +0100 Subject: Fix scroll behavior of results pane For long output it should be possible to scroll across the output instead of scrolling itemwise and being never capable to view the bottom of the output. Change-Id: Ia3478932894fc0b08e10466ec987f12295e9fff5 Reviewed-by: David Schulz --- plugins/autotest/testresultspane.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/autotest/testresultspane.cpp b/plugins/autotest/testresultspane.cpp index 6b50fd5fd6..a19daad9d8 100644 --- a/plugins/autotest/testresultspane.cpp +++ b/plugins/autotest/testresultspane.cpp @@ -73,6 +73,7 @@ TestResultsPane::TestResultsPane(QObject *parent) : outputLayout->addWidget(m_summaryWidget); m_listView = new Utils::ListView(m_outputWidget); + m_listView->setVerticalScrollMode(QAbstractItemView::ScrollPerPixel); m_model = new TestResultModel(this); m_filterModel = new TestResultFilterModel(m_model, this); m_filterModel->setDynamicSortFilter(true); -- cgit v1.2.1