问题
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:
Add following to render process:
var electron = require('electron');
electron.webFrame.setZoomLevelLimits(1, 1);
See Disable pinch zoom in webkit (or electron)
来源:https://stackoverflow.com/questions/33962824/disable-zooming-both-pinch-zoom-and-smart-zoom-mac-in-electron