You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After upgrading to 3.0.0, I noticed that doing Window.setFrame quickly after the screen changes, e.g. via Space.moveWindows or Window.setScreen causes the window to flicker in its old screen before assuming its final position. I'm not sure how fast "quickly" exactly is, but around 0.15 seconds after the screen changes is when the flickering no longer occurs on my machine (tested by deferring the setFrame call with Timer.after).
I looked in the source code and found that setFrame does the following:
12.2.1
3.0.0
After upgrading to
3.0.0
, I noticed that doingWindow.setFrame
quickly after the screen changes, e.g. viaSpace.moveWindows
orWindow.setScreen
causes the window to flicker in its old screen before assuming its final position. I'm not sure how fast "quickly" exactly is, but around0.15
seconds after the screen changes is when the flickering no longer occurs on my machine (tested by deferring thesetFrame
call withTimer.after
).I looked in the source code and found that
setFrame
does the following:I tried simulating
setFrame
with a different set of calls to achieve the same effect, and it seems to solve the issue:The text was updated successfully, but these errors were encountered: