projects
/
quassel.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7e5721c
)
fix: shift up/down doesn't scroll in the history any longer
author
Alexander von Renteln
<phon@quassel-irc.org>
Sun, 26 Oct 2008 19:48:33 +0000
(20:48 +0100)
committer
Alexander von Renteln
<phon@quassel-irc.org>
Sun, 26 Oct 2008 19:48:33 +0000
(20:48 +0100)
src/qtui/bufferwidget.cpp
patch
|
blob
|
history
diff --git
a/src/qtui/bufferwidget.cpp
b/src/qtui/bufferwidget.cpp
index
bfda813
..
6fc0287
100644
(file)
--- 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;