From 69fe0f02d7349f461465c96aa7f184aef03ad5d7 Mon Sep 17 00:00:00 2001 From: Nikos Kouremenos Date: Sat, 10 Dec 2005 22:30:28 +0000 Subject: [PATCH] show artists in about dialog alphabetically --- src/dialogs.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/dialogs.py b/src/dialogs.py index f8efe49ec..c327c20a3 100644 --- a/src/dialogs.py +++ b/src/dialogs.py @@ -473,8 +473,8 @@ class AboutDialog: #here you write your name in the form Name FamilyName dlg.set_translator_credits(_('translator-credits')) - artists = ['Dennis Craven', 'Membris Khan', 'Guillaume Morin', - 'Christophe Got'] + artists = ['Christophe Got', 'Dennis Craven', 'Guillaume Morin', + 'Membris Khan'] dlg.set_artists(artists) rep = dlg.run()