https://bugs.kde.org/show_bug.cgi?id=482361
--- Comment #4 from Vlad Zahorodnii <vlad.zahorod...@kde.org> --- Git commit a489bfa12c7d55a80c439a15471b2f669a8ef28f by Vlad Zahorodnii. Committed on 07/03/2024 at 11:41. Pushed by vladz into branch 'master'. wayland: Fix windows shrinking when output layout changes When the output layout changes, the Workspace is going to update the struts and then go through every window and see whether it should be moved or resized. On the other hand, the layer shell windows react to output changes on a timer. Furthermore, it's not synchronized with the workspace rearranging the managed windows. It means that when Workspace::desktopResized() runs, the panel struts can be slightly outdated, i.e. - An output layout change occurs - Workspace::desktopResized() is called but the struts can be wrong - some time later, LayerShellV1Integration::rearrange is called, it fixes layer shell window geometries and struts - after the layer shell integration has finished rearranging the layer shell windows, it calls Workspace::desktopResized(), but the damage had already been caused With the proposed change, the Workspace and the LayerShellV1Integration will rearrange the windows in sync. M +50 -0 autotests/integration/layershellv1window_test.cpp M +1 -16 src/layershellv1integration.cpp M +0 -4 src/layershellv1integration.h M +1 -3 src/layershellv1window.cpp M +10 -0 src/workspace.cpp M +3 -0 src/workspace.h https://invent.kde.org/plasma/kwin/-/commit/a489bfa12c7d55a80c439a15471b2f669a8ef28f -- You are receiving this mail because: You are watching all bug changes.