Skip to content

Commit

Permalink
fix: 좌우스크롤을 반대로 처리하던 문제 해결
Browse files Browse the repository at this point in the history
  • Loading branch information
HyeokjinKang committed Jan 6, 2025
1 parent 1259996 commit 205d9ff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions public/js/editor.js
Original file line number Diff line number Diff line change
Expand Up @@ -2774,12 +2774,12 @@ const scrollEvent = (e) => {
//UP
if (shiftDown) tmlScrollUp();
else if (ctrlDown) zoomIn();
else tmlScrollLeft();
else tmlScrollRight();
} else {
//DOWN
if (shiftDown) tmlScrollDown();
else if (ctrlDown) zoomOut();
else tmlScrollRight();
else tmlScrollLeft();
}
e.preventDefault();
};
Expand Down

0 comments on commit 205d9ff

Please sign in to comment.