From 14dada50c4df653205d17b1413c61659f470a623 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20T=C5=AFma?= Date: Sun, 6 Oct 2024 13:24:08 +0200 Subject: [PATCH] Print non-critical errors as warnings --- src/style.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/style.cpp b/src/style.cpp index 79e01ba..f314364 100644 --- a/src/style.cpp +++ b/src/style.cpp @@ -590,7 +590,7 @@ static bool loadSprites(const QDir &styleDir, const QString &json, if (QFileInfo::exists(spritesImg)) return sprites.load(spritesJSON, spritesImg); else { - qCritical() << spritesImg << ": no such file"; + qWarning() << spritesImg << ": no such file"; return false; } }