Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -654,7 +654,7 @@ const FlowRenderer = function () {
// zoom in/out
e.preventDefault()
let scale = getScale(mainSvgGroup)
scale = scale - (Math.sign(e.deltaY) * 0.075)
scale = scale - (Math.sign(e.deltaY) * 0.04)
Comment thread
cstns marked this conversation as resolved.
Outdated
scale = clamp(scale, 0.20, 3, 1)
updateScale(mainSvgGroup, scale)
}
Expand Down