From 16e3aac2eda3ef07732917ab0d4f4b3e069b8bd0 Mon Sep 17 00:00:00 2001 From: Bryan Schumaker Date: Sat, 30 Oct 2010 12:46:14 -0400 Subject: [PATCH] Tab ordering Switch the order of the library and playlist tabs --- ocarina.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ocarina.py b/ocarina.py index faa9836b..b3422475 100755 --- a/ocarina.py +++ b/ocarina.py @@ -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