summaryrefslogtreecommitdiff
path: root/src/commands.c
diff options
context:
space:
mode:
authorportix <portix@gmx.net>2011-11-02 00:36:49 +0100
committerportix <portix@gmx.net>2011-11-02 00:36:49 +0100
commit395f27b14f3cd459f6f6a66ddf5ab7369eb8259f (patch)
treed23ce69fbdc5e417d0da7e2de0224ba63f1d284f /src/commands.c
parent7960fe01ff18817967ae14d12f5dc0ec617eb1a4 (diff)
downloaddwb-395f27b14f3cd459f6f6a66ddf5ab7369eb8259f.zip
Add autoscroll script to default installation
Diffstat (limited to 'src/commands.c')
-rw-r--r--src/commands.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commands.c b/src/commands.c
index 255d3b37..fb74c34f 100644
--- a/src/commands.c
+++ b/src/commands.c
@@ -324,7 +324,7 @@ commands_zoom_out(KeyMap *km, Arg *arg) {
DwbStatus
commands_scroll(KeyMap *km, Arg *arg) {
GList *gl = arg->p ? arg->p : dwb.state.fview;
- dwb_scroll(gl, arg->n);
+ dwb_scroll(gl, dwb.misc.scroll_step, arg->n);
return STATUS_OK;
}/*}}}*/