May 30, 20188 yr Here is a little hint to disable the zoom when you make a double tab in windows Edge browser using a touch device. (not my idea, just found it on the web) Download the "Tampermonkey" MS Edge extension from the MS store and add this userscript: // ==UserScript== // @name Disable Double-Tap Zoom Globally // @namespace http://tampermonkey.net/ // @version 1.0 // @description disables nasty vendor-specific touch features that are annoying // @author The_GTA // @match * // @grant none // ==/UserScript== (function() { 'use strict'; window.document.body.style.touchAction = "manipulation"; })(); You have to make a new script and then just insert this single line: window.document.body.style.touchAction = "manipulation"; And you have to change the "@match" line and set a wildcard * there. After that, you can double tab (or better said, use Remote CDU faster, without zooming in. Guenter Steiner -------------------------------------------------------------------------------------- Betatester for: A2A, LORBY, FSR-Pillow Tester --------------------------------------------------------------------------------------
Archived
This topic is now archived and is closed to further replies.