summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristophe Fergeau <cfergeau@redhat.com>2013-04-10 23:37:23 +0200
committerChristophe Fergeau <cfergeau@redhat.com>2013-04-10 23:37:23 +0200
commitdcb6e2c28b9e21a97cf55fbc1da16ab61fa8588b (patch)
tree0c4199301b0dae8faef0b0699b77859fca99375a
parent1d0d45764bd356aa9864a2c9f3e5f74619b0620e (diff)
fixup! Append 'Disc (m/n)' to title.HEADmaster
-rw-r--r--src/sj-main.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/sj-main.c b/src/sj-main.c
index 8663115..c6b7933 100644
--- a/src/sj-main.c
+++ b/src/sj-main.c
@@ -1048,8 +1048,9 @@ AlbumDetails* multiple_album_dialog(GList *albums)
gchar *release_details = format_release_details (album);
if (album->disc_number > 0 && album->disc_count > 0)
- g_string_append_printf (album_title,_(" (Disc %d/%d)"),
- album->disc_number, album->disc_count);
+ if ((album->disc_number > 1) || (album->disc_count > 1))
+ g_string_append_printf (album_title,_(" (Disc %d/%d)"),
+ album->disc_number, album->disc_count);
gtk_list_store_append (albums_store, &iter);
gtk_list_store_set (albums_store, &iter,