libsaria: Manually parse user input on startup

I was doing this through an event after loading the library.  Now I call
the function manually on startup.
This commit is contained in:
Bryan Schumaker 2011-05-01 10:02:34 -04:00
parent e64f93ef39
commit 78f6d4b76b

View File

@ -35,7 +35,6 @@ def init():
import controls
import sources
from path import lastfm
event.invite("POSTLIBLOAD", parse_user_input)
sources.library.init_bg()
sources.playlist.init_bg()
@ -52,6 +51,7 @@ def startup():
controls.init2()
# plugin.load_all()
prefs.enable_save()
parse_user_input()
event.start("POSTSTART")
sources.playlist.startup()