From 9cdda21974767012581a2052e7de7647ba8db44d Mon Sep 17 00:00:00 2001 From: EvilLary Date: Mon, 1 Dec 2025 15:10:59 +0300 Subject: [PATCH] core/command: reset color after compatibility warning msg --- src/launch/command.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/launch/command.cpp b/src/launch/command.cpp index 3a7a4b1..94fe239 100644 --- a/src/launch/command.cpp +++ b/src/launch/command.cpp @@ -461,7 +461,7 @@ int runCommand(int argc, char** argv, QCoreApplication* coreApplication) { QTextStream(stdout) << "\033[31mCOMPATIBILITY WARNING: Quickshell was built against Qt " << QT_VERSION_STR << " but the system has updated to Qt " << qVersion() << " without rebuilding the package. This is likely to cause crashes, so " - "you must rebuild the quickshell package.\n"; + "you must rebuild the quickshell package.\n\033[0m"; return 1; }