From fbefe0eea3bfd36ef46ff4b1e30ab7c4de824322 Mon Sep 17 00:00:00 2001 From: Kai Uwe Broulik Date: Tue, 19 Nov 2024 09:39:25 +0100 Subject: [PATCH] client: Soften wording on fake screen message Don't admit that our software might be crashy. Pick-to: 6.8 Change-Id: I8b216478e2f214af64ae97ec149ebda751a8894f Reviewed-by: David Redondo --- src/plugins/platforms/wayland/qwaylanddisplay.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/platforms/wayland/qwaylanddisplay.cpp b/src/plugins/platforms/wayland/qwaylanddisplay.cpp index d585c194bd6..105877dcfe7 100644 --- a/src/plugins/platforms/wayland/qwaylanddisplay.cpp +++ b/src/plugins/platforms/wayland/qwaylanddisplay.cpp @@ -410,7 +410,7 @@ void QWaylandDisplay::ensureScreen() if (!mScreens.empty() || mPlaceholderScreen) return; // There are real screens or we already have a fake one - qCInfo(lcQpaWayland) << "Creating a fake screen in order for Qt not to crash"; + qCInfo(lcQpaWayland) << "There are no outputs - creating placeholder screen"; mPlaceholderScreen = new QPlatformPlaceholderScreen(); QWindowSystemInterface::handleScreenAdded(mPlaceholderScreen);