Steps to reproduce: 1. Set the native Windows client to "Resize remote session to the local window" 2. Maximize the client window (not fullscreen) 3. Increase the size of the session: xrandr -s 1920x1200 No errors in xinit.log, no errors in tlclient.log Could reproduce both with nightly build 5946 client and 4.9.0 client on Windows 10, both when connecting to a build 5942 server and when connecting to a 4.9.0 server.
The problem could not be reproduced on macOS or Linux. Also note that it's the graphics updates that stop, but the client is otherwise still responsive. E.g. the F8 menu still works. Doing another resize fixes the issue.
I did some debugging and this is some form of FLTK bug. It stops calling draw() when this scenario happens. The issue has to do with Fl_X::wait_for_expose being set. It's not clear how this magic is supposed to work, but it seems to be waiting for some WM_PAINT message that isn't showing up as expected. Until then it blocks all updates for the window.
I've pinpointed the issue, and there is unfortunately an architectural issue with FLTK and resize handling: https://github.com/fltk/fltk/issues/65 However since this only happens when maximized we might be able to work around it.
We seem to be able to avoid this issue if we just avoid trying to resize whilst maximized. And fiddling with the window size when maximized is probably not what the user wants anyway, so it's probably a good general fix.
With the latest client build (6429) this it doesn't freeze. This is now fixed for Windows 10. Tested macOS and Linux make sure this fix didn't cause any regression for fullscreen options. Also checked the release notes and it looks good so closing this bug.
(In reply to Alex Tanskanen from comment #8) > > Tested macOS and Linux make sure this fix didn't cause > any regression for fullscreen options. > I of course meant Maximized options and not fullscreen.