summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--deadbeef.glade2
-rw-r--r--interface.c12
2 files changed, 6 insertions, 8 deletions
diff --git a/deadbeef.glade b/deadbeef.glade
index 35730599..fd3d153e 100644
--- a/deadbeef.glade
+++ b/deadbeef.glade
@@ -14,7 +14,6 @@
<property name="default_height">300</property>
<property name="resizable">True</property>
<property name="destroy_with_parent">False</property>
- <property name="icon">play_24.png</property>
<property name="icon_name"></property>
<property name="decorated">True</property>
<property name="skip_taskbar_hint">False</property>
@@ -671,6 +670,7 @@ Copyright (C) Simon White and other authors.</property>
<property name="website">http://deadbeef.sf.net</property>
<property name="website_label" translatable="yes">website</property>
<property name="authors">Alexey Yakovenko &lt;waker@users.sourceforge.net&gt;</property>
+ <property name="artists">Stas &quot;uncle lag&quot; Akimushkin &lt;uncle.lag@gmail.com&gt;</property>
<property name="translator_credits" translatable="yes" comments="TRANSLATORS: Replace this string with your names, one name per line.">translator-credits</property>
</widget>
diff --git a/interface.c b/interface.c
index f9713979..0ec60777 100644
--- a/interface.c
+++ b/interface.c
@@ -30,7 +30,6 @@ GtkWidget*
create_mainwin (void)
{
GtkWidget *mainwin;
- GdkPixbuf *mainwin_icon_pixbuf;
GtkWidget *vbox1;
GtkWidget *menubar1;
GtkWidget *menuitem1;
@@ -98,12 +97,6 @@ create_mainwin (void)
gtk_widget_set_events (mainwin, GDK_KEY_PRESS_MASK);
gtk_window_set_title (GTK_WINDOW (mainwin), "DeaDBeeF");
gtk_window_set_default_size (GTK_WINDOW (mainwin), 500, 300);
- mainwin_icon_pixbuf = create_pixbuf ("play_24.png");
- if (mainwin_icon_pixbuf)
- {
- gtk_window_set_icon (GTK_WINDOW (mainwin), mainwin_icon_pixbuf);
- gdk_pixbuf_unref (mainwin_icon_pixbuf);
- }
vbox1 = gtk_vbox_new (FALSE, 0);
gtk_widget_show (vbox1);
@@ -606,6 +599,10 @@ create_aboutdialog (void)
"Alexey Yakovenko <waker@users.sourceforge.net>",
NULL
};
+ const gchar *artists[] = {
+ "Stas \"uncle lag\" Akimushkin <uncle.lag@gmail.com>",
+ NULL
+ };
aboutdialog = gtk_about_dialog_new ();
gtk_container_set_border_width (GTK_CONTAINER (aboutdialog), 4);
@@ -617,6 +614,7 @@ create_aboutdialog (void)
gtk_about_dialog_set_website (GTK_ABOUT_DIALOG (aboutdialog), "http://deadbeef.sf.net");
gtk_about_dialog_set_website_label (GTK_ABOUT_DIALOG (aboutdialog), "website");
gtk_about_dialog_set_authors (GTK_ABOUT_DIALOG (aboutdialog), authors);
+ gtk_about_dialog_set_artists (GTK_ABOUT_DIALOG (aboutdialog), artists);
/* Store pointers to all widgets, for use by lookup_widget(). */
GLADE_HOOKUP_OBJECT_NO_REF (aboutdialog, aboutdialog, "aboutdialog");