Disable zooming (both pinch zoom and smart zoom [mac]) in electron

大兔子大兔子 提交于 2019-12-24 00:11:07

问题


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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!