2

Does anyone have a working solution to disable all kinds of zooming in electron v0.35.0? (including pinch zoom and smart zoom (on mac))

1 Answers1

3

Add following to render process:

var electron = require('electron');
electron.webFrame.setZoomLevelLimits(1, 1);

See Disable pinch zoom in webkit (or electron)

Community
  • 1
  • 1
kuni
  • 39
  • 3