Skip to content

GitLab

  • Menu
Projects Groups Snippets
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in / Register
  • Z zathura
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
  • Issues 153
    • Issues 153
    • List
    • Boards
    • Service Desk
    • Milestones
  • Merge requests 2
    • Merge requests 2
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Schedules
  • Deployments
    • Deployments
    • Environments
    • Releases
  • Monitor
    • Monitor
    • Incidents
  • Analytics
    • Analytics
    • Value stream
    • CI/CD
    • Repository
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • pwmt
  • zathura
  • Issues
  • #2
Closed
Open
Created Dec 30, 2017 by gray@grayich

Space scrolling (FULL_UP, FULL_DOWN )

When a space is scrolled, part of the text is not read. He goes to the edge.

solution: decrease direction to 0.95-0.97

shortcuts.c

559c559
<   double direction = 1;
---
>   double direction = 0.97;
562c562
<     direction = -1.0;
---
>     direction *= -1;
  /* compute the direction of scrolling */
  double direction = 0.97;
  if ((argument->n == LEFT) || (argument->n == FULL_LEFT) || (argument->n == HALF_LEFT) ||
      (argument->n == UP) || (argument->n == FULL_UP) || (argument->n == HALF_UP)) {
    direction *= -1;
  }

And it is better to make this variable convenient to change

Edited Dec 30, 2017 by gray
Assignee
Assign to
Time tracking