简体   繁体   中英

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

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))

Add following to render process:

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

See Disable pinch zoom in webkit (or electron)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM