Summary: | quick tiling resizes windows to 0x0 on display switching, breaking application rendering | ||
---|---|---|---|
Product: | [Plasma] kwin | Reporter: | kolAflash <kolAflash> |
Component: | Quick Tiling | Assignee: | KWin default assignee <kwin-bugs-null> |
Status: | RESOLVED FIXED | ||
Severity: | normal | CC: | xaver.hugl |
Priority: | NOR | ||
Version: | 5.27.5 | ||
Target Milestone: | --- | ||
Platform: | Debian stable | ||
OS: | Linux | ||
See Also: |
https://bugs.kde.org/show_bug.cgi?id=465937 https://bugs.kde.org/show_bug.cgi?id=482361 |
||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: |
Description
kolAflash
2024-03-24 21:55:52 UTC
What Plasma versions do Kubuntu 23.10 and OpenSUSE 15.5 use? Debian is very out of date with 5.27.5; the bug you're describing should be fixed in 5.27.11, so if the other distros don't ship that yet, they'd still be affected as well (In reply to Zamundaaa from comment #1) > What Plasma versions do Kubuntu 23.10 and OpenSUSE 15.5 use? Debian is very > out of date with 5.27.5; the bug you're describing should be fixed in > 5.27.11, so if the other distros don't ship that yet, they'd still be > affected as well https://cdimage.ubuntu.com/kubuntu/releases/23.10/release/kubuntu-23.10-desktop-amd64.manifest (2023-10-10) kwin-x11: 5.27.8 plasma-workspace: 4:5.27.8 (reproduced bug) https://download.opensuse.org/distribution/leap/15.5/live/openSUSE-Leap-15.5-KDE-Live-x86_64-Build13.15-Media.iso Plasma: 5.27.9 (reproduced bug) Kubuntu 24.04 Beta: https://cdimages.ubuntu.com/kubuntu/daily-live/current/ (2024-03-26) kwin-x11: 5.27.10 plasma-workspace: 5.27.10 (reproduced bug) I've checked the Plasma versions in Manjaro (2024-01-13) and Debian-13-Testing (Beta 2024-03-25). (just checked Plasma version, didn't try to boot and reproduce the bug) At maximum there was Plasma-5.27.10. It looks like Plasma-5.27.11 is still too young to be shipped with any distro. https://invent.kde.org/plasma/kwin/-/tags/v5.27.11 (2024-03-06) https://invent.kde.org/plasma/kwin/-/tags/v5.27.10 (2024-12-05) And KDE-Neon already ships Plasma-6.0.2. So I compiled kwin-5.27.11 and kdecoration-5.27.11 (needed dependency). And this fixed the bug :-) Debian-12: mkdir -p ~/opt/kwin/build/ cd ~/opt/kwin/build/ wget https://invent.kde.org/plasma/kwin/-/archive/v5.27.11/kwin-v5.27.11.tar.bz2 wget https://invent.kde.org/plasma/kdecoration/-/archive/v5.27.11/kdecoration-v5.27.11.tar.bz2 tar xf kdecoration-v5.27.11.tar.bz2 tar xf kwin-v5.27.11.tar.bz2 cd kdecoration-v5.27.11 mkdir build cd build cmake -DCMAKE_BUILD_TYPE=Release -DBUILD_TESTING=false -DCMAKE_INSTALL_PREFIX="${HOME}"/opt/kwin .. make -j$(nproc) install cd ~/opt/kwin/build/kwin-v5.27.11/ mkdir build cd build cmake -DCMAKE_BUILD_TYPE=Release -DBUILD_TESTING=false -DCMAKE_INSTALL_PREFIX="${HOME}"/opt/kwin .. make -j$(nproc) install ~/opt/kwin/bin/kwin_x11 --replace Great |