https://bugs.kde.org/show_bug.cgi?id=466504
--- Comment #2 from Kelvie Wong <kel...@kelvie.ca> --- Ultimately, I think we need a way for a user to choose and save the input -> output mapping (probably a job for kscreen?) but in the meantime, perhaps we can change the check here (https://invent.kde.org/plasma/kwin/-/blob/6745cb87ecb57669389df3925f8e1660b8a637ad/src/backends/libinput/connection.cpp#L612-617) : auto testScreenMatches = [device](const Output *output) { const auto &size = device->size(); const auto &screenSize = output->physicalSize(); return std::round(size.width()) == std::round(screenSize.width()) && std::round(size.height()) == std::round(screenSize.height()); }; To allow a 5% (or some other value) margin of error in the height and width? -- You are receiving this mail because: You are watching all bug changes.