From 48071c28a7b59c395c80520faa5886efc85ac2fc Mon Sep 17 00:00:00 2001 From: Jordan Petridis Date: Sat, 10 Feb 2018 09:26:08 +0200 Subject: [PATCH] AboutDialog: Add a temporary icon, and update contributors list. --- hammond-gtk/src/headerbar.rs | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/hammond-gtk/src/headerbar.rs b/hammond-gtk/src/headerbar.rs index 5b0c747..15c6b83 100644 --- a/hammond-gtk/src/headerbar.rs +++ b/hammond-gtk/src/headerbar.rs @@ -209,15 +209,17 @@ fn on_url_change( fn about_dialog(window: >k::Window) { // Feel free to add yourself if you contribured. let authors = &[ + "Constantin Nickel", + "Gabriele Musco", + "James Wykeham-Martin", "Jordan Petridis", "Julian Sparber", - "Gabriele Musco", - "Constantin Nickel", ]; let dialog = gtk::AboutDialog::new(); // Waiting for a logo. - dialog.set_logo_icon_name("org.gnome.Hammond"); + // dialog.set_logo_icon_name("org.gnome.Hammond"); + dialog.set_logo_icon_name("multimedia-player"); dialog.set_comments("A Podcast Client for the GNOME Desktop."); dialog.set_copyright("© 2017, 2018 Jordan Petridis"); dialog.set_license_type(gtk::License::Gpl30);