Browse Source

Fix the alt-scrolling being swapped with regular scrolling

tags/v0.1.0
Fen Dweller 5 years ago
parent
commit
3c92cd18c1
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      macrovision.js

+ 1
- 1
macrovision.js View File

@@ -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 };


Loading…
Cancel
Save