ocarina: Fix now playing label order

I initially had length and play count switched.
This commit is contained in:
Bryan Schumaker 2011-05-26 09:02:44 -04:00
parent b7a45a3e18
commit 7c39b9ccd1
1 changed files with 2 additions and 2 deletions

View File

@ -32,8 +32,8 @@ tags.add(view)
page.pack_start(tags)
YEAR = gtk.Label("Year:")
LENGTH = gtk.Label("Play count:")
COUNT = gtk.Label("Length:")
LENGTH = gtk.Label("Length:")
COUNT = gtk.Label("Play count:")
attr_box = gtk.VBox(True)
pack_label(attr_box, YEAR)
pack_label(attr_box, LENGTH)