https://bugs.kde.org/show_bug.cgi?id=275433

--- Comment #11 from Nicolas <nico...@hoeft.de> ---
I've played around a bit, and it seems that the KWindowSyste::workArea() is not
working as expected -- at least on scaled (and/or multi-head) setups.

What kind of works better is simply returning screenGeometry always in
MainWindow::getDesktopGeometry(), it seems to be a bit more reliable, ie. doing
the same for wayland and x11:

    if (m_isWayland || true) {
        // on Wayland it's not possible to get the work area
        return screenGeometry;
    }

Then the window will overlap the panel if the height is 100%, but I can set the
height to 90%, but then get a working yakuake on dual-screens with scaling

-- 
You are receiving this mail because:
You are watching all bug changes.

Reply via email to