From 02ce0f1e99ed27ee48cf0ee1ce6371181eae464e Mon Sep 17 00:00:00 2001 From: Nikos Kouremenos Date: Sun, 28 Aug 2005 15:55:50 +0000 Subject: [PATCH] credit our artists in about dialog --- src/dialogs.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/dialogs.py b/src/dialogs.py index 1af9ab231..508891e76 100644 --- a/src/dialogs.py +++ b/src/dialogs.py @@ -422,6 +422,9 @@ class AboutDialog: dlg.set_logo(pixbuf) dlg.set_translator_credits(_('translator-credits')) + + artists = ['Denis Craven', 'Membris Khan', 'Guillaume Morin'] + dlg.set_artists(artists) rep = dlg.run() dlg.destroy()