Disable pinch zoom in webkit (or electron)

后端 未结 9 2355
北荒
北荒 2020-12-29 02:23

Is there any way to disable pinch zoom in an electron app?

I can\'t get it to work from inside the web-view with normal javascript methods as described here: https:/

9条回答
  •  猫巷女王i
    2020-12-29 02:40

    var app = require('electron')
    app.commandLine.appendSwitch('disable-pinch');
    

    Solution found by mixing these two links:

    1 - https://github.com/electron/electron/issues/8793#issuecomment-289791853

    2 - https://github.com/electron/electron/blob/master/docs/api/chrome-command-line-switches.md

提交回复
热议问题