Is it possible to enable/enforce "smooth scrolling...
# questions
a
Is it possible to enable/enforce "smooth scrolling" for zooming on the Graph View? When I use a laptop touchpad scroll the zoom is smooth and looks great, using a mouse wheel jumps by 50%/200%. Can't see a setting in VS Code.
j
Hey @AshSimmonds , I believe the setting you are looking for is
zoomSpeed
. https://wiki.dendron.so/notes/3i4ABJutl7NGeXRHTnUEC/#zoomspeed You can update this in your dendron.yml by running
Dendron: Configure (yaml)
and update the workspace config:
Copy code
workspace:
  graph:
    zoomSpeed: 1
It has a default value of 1. This configuration updates the wheel sensitivity of cytoscape(the library we use to build a graph). More info here: https://js.cytoscape.org/#init-opts/wheelSensitivity
a
Cool thanks, will give it a shot.
2 Views