Exemplo n.º 1
0
    def __configure_scan_dirs(self, library):
        """Get user to configure scan dirs, if none is set up"""
        if not get_scan_dirs() and not len(library) and \
                quodlibet.is_first_session("quodlibet"):
            print_d("Couldn't find any scan dirs")

            resp = ConfirmLibDirSetup(self).run()
            if resp == ConfirmLibDirSetup.RESPONSE_SETUP:
                prefs = PreferencesWindow(self)
                prefs.set_page("library")
                prefs.show()
Exemplo n.º 2
0
 def __configure_scan_dirs(self, library):
     """Get user to configure scan dirs, if none is set up"""
     if not get_scan_dirs() and not len(library) and \
             quodlibet.is_first_session("quodlibet"):
         print_d("Couldn't find any scan dirs")
         if qltk.ConfirmAction(self, _("Set up library directories?"),
                _("You don't have any music library set up. "
                  "Would you like to do that now?")).run():
             prefs = PreferencesWindow(self)
             prefs.set_page("library")
             prefs.show()
Exemplo n.º 3
0
 def setUp(self):
     config.init()
     init_fake_app()
     # Avoid warnings when running with empty config
     set_columns(["artist", "title"])
     self.win = PreferencesWindow(None)
Exemplo n.º 4
0
 def __preferences(self, activator):
     window = PreferencesWindow(self)
     window.show()