From 6a9719e2e3f3bac9d9385f1ae85c5cc6505f43f0 Mon Sep 17 00:00:00 2001 From: Pier Luigi Fiorini Date: Wed, 2 Aug 2023 07:39:45 +0200 Subject: [PATCH] Follow rename of Aurora QPA plugin --- src/compositor/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/compositor/main.cpp b/src/compositor/main.cpp index 357890602..e402420be 100644 --- a/src/compositor/main.cpp +++ b/src/compositor/main.cpp @@ -109,7 +109,7 @@ int main(int argc, char *argv[]) #if QT_VERSION >= QT_VERSION_CHECK(5, 11, 0) // Since Qt 5.11.0 we can specify a fallback platform plugin, // so try wayland and xcb in this order unless it's running on a vt - qputenv("QT_QPA_PLATFORM", "wayland;xcb;liri"); + qputenv("QT_QPA_PLATFORM", "wayland;xcb;aurora-eglfs"); #else // Try to detect the platform based on environment variables, // fallback to liri if nothing is found @@ -118,7 +118,7 @@ int main(int argc, char *argv[]) else if (qEnvironmentVariableIsSet("DISPLAY")) qputenv("QT_QPA_PLATFORM", QByteArrayLiteral("xcb")); else - qputenv("QT_QPA_PLATFORM", QByteArrayLiteral("liri")); + qputenv("QT_QPA_PLATFORM", QByteArrayLiteral("aurora-eglfs")); #endif // ShareOpenGLContexts is needed for using the threaded renderer