Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Client|UI|ScrollAreaWidget: Reduced page up/down step size to half th…
…e visible size

Slightly more comfortable to use than full page jumps.
  • Loading branch information
skyjake committed Jul 6, 2013
1 parent fe529a2 commit 21bd5d1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doomsday/client/src/ui/widgets/scrollareawidget.cpp
Expand Up @@ -358,7 +358,7 @@ bool ScrollAreaWidget::handleEvent(Event const &event)
}
else
{
scrollY(d->y->animation().target() - pageSize, .3f);
scrollY(d->y->animation().target() - pageSize/2, .3f);
}
return true;

Expand All @@ -370,7 +370,7 @@ bool ScrollAreaWidget::handleEvent(Event const &event)
}
else
{
scrollY(d->y->animation().target() + pageSize, .3f);
scrollY(d->y->animation().target() + pageSize/2, .3f);
}
return true;

Expand Down

0 comments on commit 21bd5d1

Please sign in to comment.