aboutsummaryrefslogtreecommitdiff
path: root/src/metadata-widget.c
diff options
context:
space:
mode:
authorConor Curran <conor.curran@canonical.com>2012-03-19 18:35:30 +0000
committerConor Curran <conor.curran@canonical.com>2012-03-19 18:35:30 +0000
commit90c440a05e9d0f45583719c921e2fbd2d4eefaa7 (patch)
tree6dbdc57d1fda0336d3717a79c697ecdf1a3074af /src/metadata-widget.c
parent2e894a27c5563346d54bbce25754d6e850747d63 (diff)
downloadayatana-indicator-sound-90c440a05e9d0f45583719c921e2fbd2d4eefaa7.tar.gz
ayatana-indicator-sound-90c440a05e9d0f45583719c921e2fbd2d4eefaa7.tar.bz2
ayatana-indicator-sound-90c440a05e9d0f45583719c921e2fbd2d4eefaa7.zip
more defensive approach to dealing with the playlistdetails struct specifically the activeplaylist prop, tweaked player label padding by 1 pixel
Diffstat (limited to 'src/metadata-widget.c')
-rw-r--r--src/metadata-widget.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/metadata-widget.c b/src/metadata-widget.c
index ceae79a..7c7e750 100644
--- a/src/metadata-widget.c
+++ b/src/metadata-widget.c
@@ -228,7 +228,7 @@ metadata_widget_init (MetadataWidget *self)
GtkWidget* player_label;
player_label = gtk_label_new ("");
gtk_misc_set_alignment(GTK_MISC(player_label), (gfloat)0, (gfloat)0);
- gtk_misc_set_padding (GTK_MISC(player_label), (gfloat)1, (gfloat)4);
+ gtk_misc_set_padding (GTK_MISC(player_label), (gfloat)1, (gfloat)3);
gtk_widget_set_size_request (player_label, 150, 24);
priv->player_label = player_label;