mirror of https://github.com/procxx/kepka.git
Fix PiP on multi-monitor setup.
This commit is contained in:
parent
770678e32a
commit
093c2887c3
|
@ -47,7 +47,7 @@ constexpr auto kMsInSecond = 1000;
|
|||
[[nodiscard]] QRect ScreenFromPosition(QPoint point) {
|
||||
const auto screen = [&]() -> QScreen* {
|
||||
for (const auto screen : QGuiApplication::screens()) {
|
||||
if (screen->virtualGeometry().contains(point)) {
|
||||
if (screen->geometry().contains(point)) {
|
||||
return screen;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue