From fbb3786f73970f29c6b550a58e61f1bc9fd58465 Mon Sep 17 00:00:00 2001 From: Valentino Orlandi Date: Mon, 5 Feb 2024 21:01:05 +0100 Subject: [PATCH] Fix Fixed icons not updating at startup with native theme is system theme is dark --- logdoctor/globals/global_configs.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/logdoctor/globals/global_configs.cpp b/logdoctor/globals/global_configs.cpp index 74d7a47b..dc67c113 100644 --- a/logdoctor/globals/global_configs.cpp +++ b/logdoctor/globals/global_configs.cpp @@ -11,6 +11,6 @@ WindowTheme window_theme = WindowTheme::Native; IconsTheme icons_theme = IconsTheme::Auto; ChartsTheme charts_theme = ChartsTheme::Light; -QString icons_set = "light_native"; +QString icons_set = ""; } // namespace GlobalConfigs