diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/dialogs/about.c | 2 | ||||
-rw-r--r-- | src/editor.c | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/dialogs/about.c b/src/dialogs/about.c index 7ed38fd..e3424ac 100644 --- a/src/dialogs/about.c +++ b/src/dialogs/about.c @@ -88,7 +88,7 @@ GtkWidget *create_about_dialog(GtkWindow *parent) /* Images principales */ - filename = find_pixmap_file("openida.png"); + filename = find_pixmap_file("chrysalide-full.png"); image = qck_create_image(NULL, NULL, filename); gtk_fixed_put(GTK_FIXED(fixed), image, 10, 10); gtk_widget_set_size_request(image, 330, 300); 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); |