mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-20 11:22:15 +00:00
fix(editor): Zoom in/out on canvas the same amount on scroll/gesture (#7602)
Github issue / Community forum post (link here to close automatically): https://community.n8n.io/t/ctrl-mousewheel-zoom-jumps-out-possible-to-avoid/31952
This commit is contained in:
@@ -265,7 +265,8 @@ export class WorkflowPage extends BasePage {
|
||||
ctrlKey: true,
|
||||
pageX: cy.window().innerWidth / 2,
|
||||
pageY: cy.window().innerHeight / 2,
|
||||
deltaY: mode === 'zoomOut' ? 16 * steps : -16 * steps,
|
||||
deltaMode: 1,
|
||||
deltaY: mode === 'zoomOut' ? steps : -steps,
|
||||
});
|
||||
},
|
||||
hitUndo: () => {
|
||||
|
||||
Reference in New Issue
Block a user