Tab ordering

Switch the order of the library and playlist tabs
This commit is contained in:
Bryan Schumaker 2010-10-30 12:46:14 -04:00
parent 4f771dd6e7
commit 16e3aac2ed
1 changed files with 2 additions and 1 deletions

View File

@ -18,8 +18,9 @@ prefs = libsaria.prefs
win = ocarina.get_window(prefs["window_size"])
ocarina.set_window_title(ocarina.__vers__)
ocarina.add_tab("Library", collection.Library())
ocarina.add_tab("Playlist", collection.Playlist())
ocarina.add_tab("Library", collection.Library())
after = now()
print "Startup took:", after-before