~ubuntu-branches/ubuntu/precise/indicator-sound/precise-proposed

« back to all changes in this revision

Viewing changes to src/metadata-widget.c

Tags: 0.8.3.0-0ubuntu1
* New upstream release.
  - Fixed memory corruption issue (LP: #897218)
  - crashed with SIGABRT in pa_operation_unref (LP: #908682)
  - Banshee shown in sound menu after removal until reboot (LP: #771202)
  - Coverity PASS_BY_VALUE - CID 10620 (LP: #937451)
  - App icon and name are not aligned (LP: #939929)

Show diffs side-by-side

added added

removed removed

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