From eb6b01b558a36112f08e4e9e6c183fecfeec5725 Mon Sep 17 00:00:00 2001 From: Bhushan Shah Date: Mon, 12 Feb 2018 14:07:12 +0530 Subject: [PATCH] Don't fullscreen windows from the showEvent Martin says this probably results in the loops, and setting window state to fullscreen from constructor should be enough. --- components/fullscreenpanel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/fullscreenpanel.cpp b/components/fullscreenpanel.cpp index e6c42f65..efc28cfb 100644 --- a/components/fullscreenpanel.cpp +++ b/components/fullscreenpanel.cpp @@ -95,7 +95,7 @@ void FullScreenPanel::showEvent(QShowEvent *event) { using namespace KWayland::Client; QQuickWindow::showEvent(event); - setWindowState(Qt::WindowFullScreen); +// setWindowState(Qt::WindowFullScreen); }