correct X scroll direction for history navigation
This commit is contained in:
parent
86ff831600
commit
f1ecb4cd39
@ -223,7 +223,7 @@ class Display {
|
||||
e.preventDefault();
|
||||
}
|
||||
} else if (e.shiftKey) {
|
||||
const delta = e.deltaX || e.deltaY;
|
||||
const delta = -e.deltaX || e.deltaY;
|
||||
if (delta > 0) {
|
||||
this.sourceTermView();
|
||||
e.preventDefault();
|
||||
|
Loading…
Reference in New Issue
Block a user