diff --git a/userscript-no-hide.js b/userscript-no-hide.js index 052fced..2342782 100644 --- a/userscript-no-hide.js +++ b/userscript-no-hide.js @@ -1,6 +1,6 @@ // ==UserScript== // @name GeoFS Information Display -// @version 2.3 +// @version 2.4 // @description Displays Speed/Altitude/Heading/VS on the bottom right of the screen // @author krunchiekrunch // @match https://www.geo-fs.com/geofs.php?v=* @@ -9,8 +9,8 @@ // @grant none // ==/UserScript== -// Note -// The AGL display NO LONGER have a offset that varies from aircraft to aircraft. - Fixed by GGamerGGuy on Discord +// Notes +// The AGL display NO LONGER have a offset that varies from aircraft to aircraft. (Since 2.3) - Fixed by GGamerGGuy on Discord (function() { @@ -51,6 +51,7 @@ flightDataElement.style.lineHeight = '36px'; flightDataElement.style.verticalAlign = 'middle'; flightDataElement.style.zIndex = '9999'; + flightDataElement.style.pointerEvents = 'none'; // Make the display clickable through document.body.appendChild(flightDataElement); } @@ -68,4 +69,4 @@ // Update flight data display every 100ms setInterval(updateFlightDataDisplay, 100); -})(); \ No newline at end of file +})();