~cjcurran/indicator-sound/fixes-945827

« back to all changes in this revision

Viewing changes to src/metadata-widget.c

  • Committer: Conor Curran
  • Date: 2012-03-19 18:35:30 UTC
  • Revision ID: conor.curran@canonical.com-20120319183530-avs8nswf2417rl6j
more defensive approach to dealing with the playlistdetails struct specifically the activeplaylist prop, tweaked player label padding by 1 pixel

Show diffs side-by-side

added added

removed removed

Lines of Context:
228
228
  GtkWidget* player_label;
229
229
  player_label = gtk_label_new ("");
230
230
  gtk_misc_set_alignment(GTK_MISC(player_label), (gfloat)0, (gfloat)0);
231
 
  gtk_misc_set_padding (GTK_MISC(player_label), (gfloat)1, (gfloat)4);
 
231
  gtk_misc_set_padding (GTK_MISC(player_label), (gfloat)1, (gfloat)3);
232
232
  gtk_widget_set_size_request (player_label, 150, 24);
233
233
  priv->player_label = player_label;
234
234