From: Alexander von Renteln Date: Sun, 26 Oct 2008 19:48:33 +0000 (+0100) Subject: fix: shift up/down doesn't scroll in the history any longer X-Git-Tag: 0.3.1~122 X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=commitdiff_plain;h=0ffa86595dcad7abf297d8e1fe56c7c3bfcbcb7c fix: shift up/down doesn't scroll in the history any longer --- diff --git a/src/qtui/bufferwidget.cpp b/src/qtui/bufferwidget.cpp index bfda8133..6fc0287d 100644 --- a/src/qtui/bufferwidget.cpp +++ b/src/qtui/bufferwidget.cpp @@ -165,6 +165,7 @@ bool BufferWidget::eventFilter(QObject *watched, QEvent *event) { return false; int sliderPosition = scrollArea->verticalScrollBar()->value(); scrollArea->verticalScrollBar()->setValue(sliderPosition + (direction * 12)); + return true; } default: return false;