From 0e0453a1a2a261fc57f1b68cfbddfd1f42160ef0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Sun, 5 Mar 2023 15:09:16 +0100 Subject: [PATCH] st/icon-theme: Initialize current theme We currently only read the configured theme on changes, so we end up always using the default theme initially, whoops. https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/6471 Part-of: --- src/st/st-icon-theme.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/st/st-icon-theme.c b/src/st/st-icon-theme.c index 6b770cc1f..a7cbd0da8 100644 --- a/src/st/st-icon-theme.c +++ b/src/st/st-icon-theme.c @@ -480,6 +480,7 @@ st_icon_theme_init (StIconTheme *icon_theme) settings = st_settings_get (); g_signal_connect (settings, "notify::gtk-icon-theme", G_CALLBACK (theme_changed), icon_theme); + update_current_theme (icon_theme); } static void