From d346e54d41e07c7a84a4f50fa4ff9a56d742e511 Mon Sep 17 00:00:00 2001 From: Michail Vourlakos Date: Sun, 16 Jan 2022 21:57:17 +0200 Subject: [PATCH] panels:fix switch to explicit screens and back --some improvements introduced to 0.10.7 broke the screen switching codepath for panels. With this fix users can again move panels around for their screens BUG:448569 FIXED-IN:0.10.8 --- app/view/positioner.cpp | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/app/view/positioner.cpp b/app/view/positioner.cpp index 5b881cfff..169bf96ad 100644 --- a/app/view/positioner.cpp +++ b/app/view/positioner.cpp @@ -972,10 +972,16 @@ void Positioner::initSignalingForLocationChangeSliding() //! SCREEN connect(m_view, &QQuickView::screenChanged, this, [&]() { + if (!m_view || !m_nextScreen) { + return; + } + //if panels are not excluded from confirmed geometry check then they are stuck in sliding out end + //and they do not switch to new screen geometry + bool confirmedgeometry = m_view->behaveAsPlasmaPanel() || (!m_view->behaveAsPlasmaPanel() && m_nextScreen->geometry().contains(m_view->geometry().center())); + if (m_nextScreen && m_nextScreen == m_view->screen() - && m_nextScreen->geometry().contains(m_view->geometry().center())) { - + && confirmedgeometry) { bool isrelocationlastevent = isLastHidingRelocationEvent(); m_nextScreen = nullptr; m_nextScreenName = "";