commit | 746307554451220697d399ae5ee6021b65ad6a07 | [log] [tgz] |
---|---|---|
author | Pablo Gamito <pablogamito@google.com> | Fri Aug 18 10:19:33 2023 +0000 |
committer | Pablo Gamito <pablogamito@google.com> | Wed Aug 23 10:54:02 2023 +0000 |
tree | d187433a5083dd606532551b646fb74662d8fa5a | |
parent | 09de5796bd383a45bef149a0de3c7f8ab5e0e1ba [diff] |
Invert scroll wheel behavior Change-Id: I76f2ccf75c9b675bfc5954a91c7a5ec97364f17f
diff --git a/tools/winscope/src/app/components/timeline/mini-timeline/mini_timeline_component.ts b/tools/winscope/src/app/components/timeline/mini-timeline/mini_timeline_component.ts index 225282e..c0c960e 100644 --- a/tools/winscope/src/app/components/timeline/mini-timeline/mini_timeline_component.ts +++ b/tools/winscope/src/app/components/timeline/mini-timeline/mini_timeline_component.ts
@@ -303,7 +303,7 @@ xPosInCanvas ); - if (event.deltaY > 0) { + if (event.deltaY < 0) { this.zoomIn(zoomTo); } else { this.zoomOut(zoomTo);