Skip to content

Commit

Permalink
Make "pull-to-follow" easier for regular scroll wheels.
Browse files Browse the repository at this point in the history
  • Loading branch information
nickbnf committed Feb 12, 2016
1 parent 7743500 commit 06d5d36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/abstractlogview.cpp
Expand Up @@ -654,7 +654,7 @@ void AbstractLogView::wheelEvent( QWheelEvent* wheelEvent )
auto pixel_delta = wheelEvent->pixelDelta();

if ( pixel_delta.isNull() ) {
y_delta = wheelEvent->angleDelta().y() / 1.4;
y_delta = wheelEvent->angleDelta().y() / 0.7;
}
else {
y_delta = pixel_delta.y();
Expand Down

0 comments on commit 06d5d36

Please sign in to comment.