question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Scrolling by wheel move unusably slow on edge with Chromium 94

See original GitHub issue

This problem is probably related to the edge Smooth Scrolling feature. If I disabled this feature via edge://flags/ page, the editor just works fine

image

problem demo in gif codemirror滚动问题

I have already have a try to fix the problem:

// Sync scrolling between fake scrollbars and real scrollable
  // area, ensure viewport is updated when scrolling.
  on(d.scroller, "scroll", (e) => {
    if (d.scroller.clientHeight) {
      setTimeout(() => {
        updateScrollTop(cm, d.scroller.scrollTop);
        setScrollLeft(cm, d.scroller.scrollLeft, true);
        signal(cm, "scroll", cm);
      }, 120);
    }
  });

Issue Analytics

  • State:closed
  • Created 2 years ago
  • Comments:5 (3 by maintainers)

github_iconTop GitHub Comments

1reaction
marijnhcommented, Oct 1, 2021

I was told Chrome has released another update which addresses this.

0reactions
marijnhcommented, Oct 1, 2021

Looking at that diff, it includes all of the release notes and version upgrades, but no code diff.

Yes, release tags are separate commits, but include the changes from previous commits.

Read more comments on GitHub >

github_iconTop Results From Across the Web

edge browser mouse scrolling is unbelievably slow
When I want to use my mouse scroll wheel the page advances at an incredibly slow pace. I have adjusted the mouse settings...
Read more >
Make ms edge scrolling more smooth? : r/MicrosoftEdge - Reddit
When scorlling in Chrome it is smooth, while in MS Edge its like "lagging", or doing "jumps" when moving. Is it possible to...
Read more >
Scrolling is badly impacted by Chrome 94.0.4606.61
Using a mouse wheel to scroll (keyboard page up/down nav is fine), and the doc isn't large at all - anything that exceeds...
Read more >
Extremely slow page scrolling starting UI5 1.88 on Chrome 94 ...
Important to stress, under scrolling I mean a scroll with a mouse scroller, not a moving the scroll bar.
Read more >
How to adjust the scrolling speed in Microsoft Edge browser
Meanwhile, let us check few settings and see if it helps to improve your browsing experience. Select the Start button, then select Settings ......
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found