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
I stumbled upon an issue where a client using local scaling can fail to resize when the window resizes. This happens in very specific conditions, for example when starting with a maximized window, then resizing it, then maximizing it again.
This happens since 0ff0844 (first released in 1.3.0)
Reproduction
This is easy to reproduce with the VNC app:
open the VNC app
maximize the window
connect
resize window
the viewer resizes correctly
maximize the window again
the viewer does not resize
Here is a screencast demonstrating the issue, using vnc.html from master (047531e), with Chromium (but this is not browser-specific).
Screencast.2024-09-30.11.40.32.webm
Misc. details
I have not completely understood the issue, but I can share some observations / intuitions
the client resize happens only if !_clientHasExpectedSize()
but _expectedClientWidth and _expectedClientHeight never change when I resize the window.
thus if the new window size happens to be the same as the initial size, the client won't resize
this is why the issue is easily triggered with a maximized window
this is also why it rarely happens otherwise, and even then it is not even noticeable
The text was updated successfully, but these errors were encountered:
Hi there!
I stumbled upon an issue where a client using local scaling can fail to resize when the window resizes. This happens in very specific conditions, for example when starting with a maximized window, then resizing it, then maximizing it again.
This happens since 0ff0844 (first released in 1.3.0)
Reproduction
This is easy to reproduce with the VNC app:
Here is a screencast demonstrating the issue, using
vnc.html
from master (047531e), with Chromium (but this is not browser-specific).Screencast.2024-09-30.11.40.32.webm
Misc. details
I have not completely understood the issue, but I can share some observations / intuitions
!_clientHasExpectedSize()
_expectedClientWidth
and_expectedClientHeight
never change when I resize the window.The text was updated successfully, but these errors were encountered: