Skip to content

Commit 205d9ff

Browse files
committed
fix: 좌우스크롤을 반대로 처리하던 문제 해결
1 parent 1259996 commit 205d9ff

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

public/js/editor.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2774,12 +2774,12 @@ const scrollEvent = (e) => {
27742774
//UP
27752775
if (shiftDown) tmlScrollUp();
27762776
else if (ctrlDown) zoomIn();
2777-
else tmlScrollLeft();
2777+
else tmlScrollRight();
27782778
} else {
27792779
//DOWN
27802780
if (shiftDown) tmlScrollDown();
27812781
else if (ctrlDown) zoomOut();
2782-
else tmlScrollRight();
2782+
else tmlScrollLeft();
27832783
}
27842784
e.preventDefault();
27852785
};

0 commit comments

Comments
 (0)