diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/textadept.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/textadept.c b/src/textadept.c index 1611b9b9..e956604e 100644 --- a/src/textadept.c +++ b/src/textadept.c @@ -2129,8 +2129,10 @@ static int cc_matchfunc(GtkEntryCompletion*_, const char *__, GtkTreeIter*___, static void new_window() { #if GTK GList *icon_list = NULL; - const char *icons[] = { "16x16", "32x32", "48x48", "64x64", "128x128" }; - for (int i = 0; i < 5; i++) { + const char *icons[] = { + "16x16", "32x32", "48x48", "64x64", "128x128", "256x256" + }; + for (int i = 0; i < 6; i++) { char *icon_file = g_strconcat(textadept_home, "/core/images/ta_", icons[i], ".png", NULL); GdkPixbuf *pb = gdk_pixbuf_new_from_file(icon_file, NULL); |