core/command: reset color after compatibility warning msg

This commit is contained in:
EvilLary 2025-12-01 15:10:59 +03:00
parent d24e8e9736
commit 9cdda21974
No known key found for this signature in database
GPG key ID: A4C53FA13FA3E63B

View file

@ -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;
}