This repository was archived by the owner on Aug 23, 2022. It is now read-only.
Replies: 3 comments 3 replies
-
|
For what its worth, seo-rii/electron-acrylic-window#26 (comment) suggests enabling Vibrancy's |
Beta Was this translation helpful? Give feedback.
3 replies
-
|
On 75hrz display and win11 21H2 still happens. |
Beta Was this translation helpful? Give feedback.
0 replies
-
|
On 240hz display and Win10 21H2 still happens. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Problem
In Windows 10 higher than version 1809, after enabling this extension, dragging the window with the mouse will cause a very serious lag.
After my research found, it seems to be a problem inside DWM, the mouse polling rate is higher than the screen rate, causing the rendering request to block in the queue, and it looks like a mouse delay.
current solution
Learning from Seo-Rii's solution in his project, I've implemented a window move/resize throttle, it can skip some move/resize events to match the screen refresh rate.
This solution was added to this extension from
v1.0.10. In my test, it performs well on the 144hz high refresh rate display, and there is no mouse lag problem. On a 60hz display, there is still a little lag, but it is acceptable.This is not a perfect solution at now, we can discuss it here.
Related issues
#5 23phy/ewc#22 reycn/listen1-desktop-fluent#15 #73
Beta Was this translation helpful? Give feedback.
All reactions