diff options
author | Matthias Clasen <mclasen@redhat.com> | 2021-06-04 09:47:26 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2021-06-04 09:49:05 -0400 |
commit | a4598567b9dd231b3bfd885bc59fdf453afe7433 (patch) | |
tree | 2984444cbb3c15bcc30404a8f71dc7d0e85742dd /gtk/gtkicontheme.c | |
parent | 8f95661167d91378fed25e7ef9af31e48362cc13 (diff) | |
download | gtk+-a4598567b9dd231b3bfd885bc59fdf453afe7433.tar.gz |
icontheme: Add detail to the 'not found' message
Name the icon theme we're using.
Fixes: #2271
Diffstat (limited to 'gtk/gtkicontheme.c')
-rw-r--r-- | gtk/gtkicontheme.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkicontheme.c b/gtk/gtkicontheme.c index c0b33c6761..208c36d715 100644 --- a/gtk/gtkicontheme.c +++ b/gtk/gtkicontheme.c @@ -2269,7 +2269,7 @@ real_choose_icon (GtkIconTheme *self, { GTK_NOTE(ICONFALLBACK, { char *s = g_strjoinv (", ", (char **)icon_names); - g_message ("No icon found for: %s", s); + g_message ("No icon found in %s (or fallbacks) for: %s", self->current_theme, s); g_free (s); }); icon = icon_paintable_new ("image-missing", size, scale); |