1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
--- utils.c 2025-01-11 23:49:29.564113249 -0500
+++ utils_new.c 2025-01-12 00:10:12.001662122 -0500
@@ -216,9 +216,9 @@
return g_strdup(name);
#ifdef WITH_SVG
- icon_info = gtk_icon_theme_lookup_icon(gtk_icon_theme_get_default(), name, 16, GTK_ICON_LOOKUP_GENERIC_FALLBACK);
+ icon_info = gtk_icon_theme_lookup_icon(gtk_icon_theme_get_default(), name, 48, GTK_ICON_LOOKUP_GENERIC_FALLBACK);
#else
- icon_info = gtk_icon_theme_lookup_icon(gtk_icon_theme_get_default(), name, 16, GTK_ICON_LOOKUP_NO_SVG | GTK_ICON_LOOKUP_GENERIC_FALLBACK);
+ icon_info = gtk_icon_theme_lookup_icon(gtk_icon_theme_get_default(), name, 48, GTK_ICON_LOOKUP_NO_SVG | GTK_ICON_LOOKUP_GENERIC_FALLBACK);
#endif
g_free(tmp_name);
}
@@ -226,7 +226,7 @@
if (!icon_info) /* 2nd fallback */
- icon_info = gtk_icon_theme_lookup_icon(gtk_icon_theme_get_default(), "empty", 16, GTK_ICON_LOOKUP_NO_SVG);
+ icon_info = gtk_icon_theme_lookup_icon(gtk_icon_theme_get_default(), "empty", 48, GTK_ICON_LOOKUP_NO_SVG);
icon = g_strdup(gtk_icon_info_get_filename(icon_info));
g_object_unref(icon_info);
|