[rhythmbox] audioscrobbler: removing numbering from list items on profile source
- From: Jonathan Matthew <jmatthew src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [rhythmbox] audioscrobbler: removing numbering from list items on profile source
- Date: Tue, 21 Sep 2010 10:49:31 +0000 (UTC)
commit 91d189128ab72d410d48d68a7e7c7ea2b5c85663
Author: Jamie Nicol <jamie thenicols net>
Date: Fri Jun 25 13:33:26 2010 +0100
audioscrobbler: removing numbering from list items on profile source
.../rb-audioscrobbler-profile-source.c | 14 ++------------
1 files changed, 2 insertions(+), 12 deletions(-)
---
diff --git a/plugins/audioscrobbler/rb-audioscrobbler-profile-source.c b/plugins/audioscrobbler/rb-audioscrobbler-profile-source.c
index 16ffba5..6413b67 100644
--- a/plugins/audioscrobbler/rb-audioscrobbler-profile-source.c
+++ b/plugins/audioscrobbler/rb-audioscrobbler-profile-source.c
@@ -561,8 +561,6 @@ rb_audioscrobbler_profile_source_set_user_list (RBAudioscrobblerProfileSource *s
int i;
GList *button_node;
- gtk_table_resize (GTK_TABLE (list_table), list_data->len, 1);
-
/* delete all existing buttons */
for (button_node = gtk_container_get_children (GTK_CONTAINER (list_table)); button_node != NULL; button_node = g_list_next (button_node)) {
gtk_widget_destroy (button_node->data);
@@ -594,8 +592,7 @@ rb_audioscrobbler_profile_source_set_user_list (RBAudioscrobblerProfileSource *s
escaped_title_text = g_markup_escape_text (data->track.title, -1);
escaped_artist_text = g_markup_escape_text (data->track.artist, -1);
- button_text = g_strdup_printf ("%i. %s\n<small>%s</small>",
- i + 1,
+ button_text = g_strdup_printf ("%s\n<small>%s</small>",
escaped_title_text,
escaped_artist_text);
@@ -617,27 +614,20 @@ rb_audioscrobbler_profile_source_set_user_list (RBAudioscrobblerProfileSource *s
g_free (button_text);
} else if (data->type == RB_AUDIOSCROBBLER_USER_DATA_TYPE_ARTIST) {
- char *button_text;
GtkWidget *contents;
GtkWidget *label;
- button_text = g_strdup_printf ("%i. %s",
- i + 1,
- data->artist.name);
-
contents = gtk_hbox_new (FALSE, 4);
if (data->artist.image != NULL) {
gtk_box_pack_start (GTK_BOX(contents),
gtk_image_new_from_pixbuf (data->artist.image),
FALSE, FALSE, 0);
}
- label = gtk_label_new (button_text);
+ label = gtk_label_new (data->artist.name);
gtk_box_pack_start (GTK_BOX(contents),
label,
FALSE, FALSE, 0);
gtk_container_add (GTK_CONTAINER (button), contents);
-
- g_free (button_text);
}
}
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]