ocarina/ocarina/sources/list.py
Bryan Schumaker 2f6313fe95 ocarina: Add track number to gui
It's helpful to see, especially since it shows how everything is sorted.
2011-05-25 23:05:05 -04:00

8 lines
161 B
Python

# Bryan Schumaker (2 / 12 / 2011)
import gtk
class List(gtk.ListStore):
def __init__(self):
gtk.ListStore.__init__(self, int, str, str, str, str, str, int)