summaryrefslogtreecommitdiff
path: root/src/editor.c
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2015-07-04 17:38:10 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2015-07-04 17:38:10 (GMT)
commit7dc9013e449529117dda8e3ecc97313e70b757a1 (patch)
tree5f8cb3dacea32e7a90814e4cecf2db95b7dc8a77 /src/editor.c
parent2bf52fcc65f066186b2b5ada7bad4d41770caf01 (diff)
Redrawn a nicer logo for Chrysalide.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@543 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/editor.c')
-rw-r--r--src/editor.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/editor.c b/src/editor.c
index d7b3ff9..7e041f4 100644
--- a/src/editor.c
+++ b/src/editor.c
@@ -99,15 +99,15 @@ static GList *build_editor_icons_list(void)
result = NULL;
- pixbuf = get_pixbuf_from_file("chrysalide_32.png");
+ pixbuf = get_pixbuf_from_file("chrysalide-32.png");
if (pixbuf != NULL)
result = g_list_append(result, pixbuf);
- pixbuf = get_pixbuf_from_file("chrysalide_64.png");
+ pixbuf = get_pixbuf_from_file("chrysalide-64.png");
if (pixbuf != NULL)
result = g_list_append(result, pixbuf);
- pixbuf = get_pixbuf_from_file("chrysalide_128.png");
+ pixbuf = get_pixbuf_from_file("chrysalide-128.png");
if (pixbuf != NULL)
result = g_list_append(result, pixbuf);