From 701d60b2fe8d334d66757522aba642ed129d0d90 Mon Sep 17 00:00:00 2001 From: Nerixyz Date: Mon, 22 Jan 2024 19:57:44 +0100 Subject: [PATCH] fix: qt 5 --- src/singletons/Theme.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/singletons/Theme.cpp b/src/singletons/Theme.cpp index f7fee9685..e89c31f96 100644 --- a/src/singletons/Theme.cpp +++ b/src/singletons/Theme.cpp @@ -225,7 +225,7 @@ bool Theme::isLightTheme() const bool Theme::isSystemTheme() const { - return this->themeName == u"System"; + return this->themeName == u"System"_s; } void Theme::initialize(Settings &settings, const Paths &paths)