Explorar el Código

Fix the alt-scrolling being swapped with regular scrolling

tags/v0.1.0
Fen Dweller hace 5 años
padre
commit
3c92cd18c1
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      macrovision.js

+ 1
- 1
macrovision.js Ver fichero

@@ -1058,7 +1058,7 @@ function setWorldHeight(oldHeight, newHeight) {

console.log("###");
console.log({ x: element.dataset.x, y: element.dataset.y });
if (altHeld) {
if (!altHeld) {
newPosition = adjustAbs({ x: element.dataset.x, y: element.dataset.y }, oldHeight, config.height);
} else {
newPosition = { x: element.dataset.x, y: element.dataset.y };


Cargando…
Cancelar
Guardar