ocarina: Remove old now playing page code

It has been reimplemented in a new file
This commit is contained in:
Bryan Schumaker 2011-04-24 08:37:56 -04:00
parent be3f8845fe
commit 8e4e17f0df
1 changed files with 0 additions and 32 deletions

View File

@ -92,35 +92,3 @@ def on_like():
#footer.pack_start(bar)
#def make_now_playing_page():
#page = gtk.HBox(False, 5)
#page.pack_start(image.AlbumArt(), False, False)
#tags = gtk.ScrolledWindow()
#tags.set_policy(gtk.POLICY_AUTOMATIC, gtk.POLICY_AUTOMATIC)
#view = gtk.Viewport()
#view.set_shadow_type(gtk.SHADOW_NONE)
#tag_box = gtk.VBox(True)
#tag_box.pack_start(label.TitleLabel())
#tag_box.pack_start(label.ArtistLabel())
#tag_box.pack_start(label.AlbumLabel())
#view.add(tag_box)
#tags.add(view)
#page.pack_start(tags)
#attrs = gtk.HBox(False, 5)
#tags2 = gtk.VBox()
#tags2.pack_start(label.YearLabel())
#tags2.pack_start(label.LengthLabel())
#tags2.pack_start(label.CountLabel())
#attrs.pack_start(tags2)
#buttons = gtk.HBox()
#buttons.pack_start(button.LikeButton(), False, False)
#buttons.pack_start(button.DislikeButton(), False, False)
#attrs.pack_start(buttons, False)
#page.pack_start(attrs)
#page.show_all()
#add_page("Now Playing", page)