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

--- Comment #3 from Allistar <allista...@gmail.com> ---
Could this be due to this code in ScreenPool::load

    // Populate allthe screen based on what's connected at startup
    for (QScreen *screen : qGuiApp->screens()) {
        // On some devices QGuiApp::screenAdded is always emitted for some
screens at startup so at this point that screen would already be managed
        if (!m_allSortedScreens.contains(screen)) {
            handleScreenAdded(screen);
        } else if (!m_idForConnector.contains(screen->name())) {
            insertScreenMapping(firstAvailableId(), screen->name());
        }
    }

This is matching screens based on the name of the screen. It looks like the QT
structure at  QGuiApplication::screens contains all screens from both of my
xscreens (xscreen0 and xscreen1) when it used to only provide those from
xscreen0. Matching by name won't work as these aren't unique. I'll check
previous versions of ScreenPool to try and isolate the regression to that class
(and hence Plasma) before looking at QT.

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

Reply via email to